vscode-extensions.yoavbls.pretty-ts-errors: 0.5.4 -> 0.6.1 (#363464)
[NixPkgs.git] / pkgs / development / python-modules / simpy / default.nix
blob7672536d5432e9f26af91de94a1c1e881ad23bbb
2   buildPythonPackage,
3   fetchPypi,
4   isPy27,
5   lib,
6   setuptools,
7   setuptools-scm,
8   py,
9   pytestCheckHook,
12 buildPythonPackage rec {
13   pname = "simpy";
14   version = "4.1.1";
15   pyproject = true;
17   disabled = isPy27;
19   src = fetchPypi {
20     inherit pname version;
21     hash = "sha256-BtB1CniEsR4OjiDOC8fG1O1fF0PUVmlTQNE/3/lQAaY=";
22   };
24   nativeBuildInputs = [
25     setuptools
26     setuptools-scm
27   ];
29   nativeCheckInputs = [
30     py
31     pytestCheckHook
32   ];
34   meta = with lib; {
35     downloadPage = "https://github.com/simpx/simpy";
36     homepage = "https://simpy.readthedocs.io/en/${version}/";
37     description = "Process-based discrete-event simulation framework based on standard Python";
38     license = [ licenses.mit ];
39     maintainers = with maintainers; [
40       dmrauh
41       shlevy
42     ];
43   };