python3Packages.simpy: fix
This commit is contained in:
committed by
Frederik Rietdijk
parent
3e597721fd
commit
4942204374
@@ -1,4 +1,4 @@
|
|||||||
{ buildPythonPackage, fetchPypi, lib }:
|
{ buildPythonPackage, fetchPypi, lib, setuptools_scm, pytestCheckHook }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "simpy";
|
pname = "simpy";
|
||||||
@@ -9,6 +9,9 @@ buildPythonPackage rec {
|
|||||||
sha256 = "b36542e2faab612f861c5ef4da17220ac1553f5892b3583c67281dbe4faad404";
|
sha256 = "b36542e2faab612f861c5ef4da17220ac1553f5892b3583c67281dbe4faad404";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ setuptools_scm ];
|
||||||
|
checkInputs = [ pytestCheckHook ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://simpy.readthedocs.io/en/latest/";
|
homepage = "https://simpy.readthedocs.io/en/latest/";
|
||||||
description = "A process-based discrete-event simulation framework based on standard Python.";
|
description = "A process-based discrete-event simulation framework based on standard Python.";
|
||||||
|
|||||||
Reference in New Issue
Block a user