depot/third_party/nixpkgs/pkgs/development/python-modules/simpy/default.nix
Default email 5a8b500490 Project import generated by Copybara.
GitOrigin-RevId: 1ca6b0a0cc38dbba0441202535c92841dd39d1ae
2021-06-04 10:07:49 +01:00

27 lines
714 B
Nix

{ buildPythonPackage, fetchPypi, isPy27, lib, setuptools, setuptools-scm
, pytestCheckHook }:
buildPythonPackage rec {
pname = "simpy";
version = "4.0.1";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
sha256 = "b36542e2faab612f861c5ef4da17220ac1553f5892b3583c67281dbe4faad404";
};
nativeBuildInputs = [ setuptools-scm ];
propagatedBuildInputs = [ setuptools ];
checkInputs = [ pytestCheckHook ];
meta = with lib; {
homepage = "https://simpy.readthedocs.io/en/${version}/";
description = "Process-based discrete-event simulation framework based on standard Python";
license = [ licenses.mit ];
maintainers = with maintainers; [ dmrauh shlevy ];
};
}