nixpkgs/pkgs/development/python-modules/simpy/default.nix

19 lines
507 B
Nix
Raw Normal View History

2018-07-17 22:37:50 +01:00
{ buildPythonPackage, fetchPypi, lib }:
buildPythonPackage rec {
pname = "simpy";
version = "3.0.13";
2018-07-17 22:37:50 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "dd8c16ca3cff1574c99fe9f5ea4019c631c327f2bdc842e8b1a5c55f5e3e9d27";
2018-07-17 22:37:50 +01:00
};
meta = with lib; {
homepage = "https://simpy.readthedocs.io/en/latest/";
2018-07-17 22:37:50 +01:00
description = "A process-based discrete-event simulation framework based on standard Python.";
license = [ licenses.mit ];
maintainers = with maintainers; [ shlevy ];
};
}