python3Packages.simpy: add missing dependency
This commit is contained in:
parent
9893f64b57
commit
0f436ea358
|
@ -1,21 +1,27 @@
|
||||||
{ buildPythonPackage, fetchPypi, lib, setuptools_scm, pytestCheckHook }:
|
{ buildPythonPackage, fetchPypi, isPy27, lib, setuptools, setuptools_scm
|
||||||
|
, pytestCheckHook }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "simpy";
|
pname = "simpy";
|
||||||
version = "4.0.1";
|
version = "4.0.1";
|
||||||
|
|
||||||
|
disabled = isPy27;
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "b36542e2faab612f861c5ef4da17220ac1553f5892b3583c67281dbe4faad404";
|
sha256 = "b36542e2faab612f861c5ef4da17220ac1553f5892b3583c67281dbe4faad404";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ setuptools_scm ];
|
nativeBuildInputs = [ setuptools_scm ];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ setuptools ];
|
||||||
|
|
||||||
checkInputs = [ pytestCheckHook ];
|
checkInputs = [ pytestCheckHook ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://simpy.readthedocs.io/en/latest/";
|
homepage = "https://simpy.readthedocs.io/en/${version}/";
|
||||||
description = "A process-based discrete-event simulation framework based on standard Python.";
|
description = "Process-based discrete-event simulation framework based on standard Python";
|
||||||
license = [ licenses.mit ];
|
license = [ licenses.mit ];
|
||||||
maintainers = with maintainers; [ shlevy ];
|
maintainers = with maintainers; [ dmrauh shlevy ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue