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