python3Packages.simpy: fix

This commit is contained in:
Jonathan Ringer 2020-06-08 11:53:41 -07:00 committed by Frederik Rietdijk
parent 3e597721fd
commit 4942204374

View File

@ -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.";