ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / pynisher / default.nix
blob8dc5d1eaa9f6e54f53ca27304537cd9e90946648
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , psutil
5 , pythonOlder
6 , typing-extensions
7 }:
9 buildPythonPackage rec {
10   pname = "pynisher";
11   version = "1.0.0";
12   format = "setuptools";
14   disabled = pythonOlder "3.7";
16   src = fetchPypi {
17     inherit pname version;
18     hash = "sha256-5FJQCN+yO1gh7HK47MRR/SAr8Qzix3bfrjyzsakBQXA=";
19   };
21   propagatedBuildInputs = [
22     psutil
23     typing-extensions
24   ];
26   # No tests in the Pypi archive
27   doCheck = false;
29   pythonImportsCheck = [
30     "pynisher"
31   ];
33   meta = with lib; {
34     description = "Module intended to limit a functions resources";
35     homepage = "https://github.com/sfalkner/pynisher";
36     license = licenses.mit;
37     maintainers = with maintainers; [ psyanticy ];
38   };