Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / simpy / default.nix
blob91b1b6c7002ee5d189e46870550f7f7c9fa3892c
1 { buildPythonPackage
2 , fetchPypi
3 , isPy27
4 , lib
5 , setuptools
6 , setuptools-scm
7 , py
8 , pytestCheckHook
9 }:
11 buildPythonPackage rec {
12   pname = "simpy";
13   version = "4.1.1";
14   pyproject = true;
16   disabled = isPy27;
18   src = fetchPypi {
19     inherit pname version;
20     hash = "sha256-BtB1CniEsR4OjiDOC8fG1O1fF0PUVmlTQNE/3/lQAaY=";
21   };
23   nativeBuildInputs = [
24     setuptools
25     setuptools-scm
26   ];
28   nativeCheckInputs = [
29     py
30     pytestCheckHook
31   ];
33   meta = with lib; {
34     downloadPage = "https://github.com/simpx/simpy";
35     homepage = "https://simpy.readthedocs.io/en/${version}/";
36     description = "Process-based discrete-event simulation framework based on standard Python";
37     license = [ licenses.mit ];
38     maintainers = with maintainers; [ dmrauh shlevy ];
39   };