Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 631 B view raw
1{ stdenv, buildPythonPackage, fetchPypi, psutil, docutils }: 2 3buildPythonPackage rec { 4 pname = "pynisher"; 5 version = "0.5.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "1b1079315ad1009de108c9ad701f6ae5274264e64503fc22c2de366d99953f34"; 10 }; 11 12 propagatedBuildInputs = [ psutil docutils ]; 13 14 # no tests in the Pypi archive 15 doCheck = false; 16 17 meta = with stdenv.lib; { 18 description = "The pynisher is a little module intended to limit a functions resources."; 19 homepage = "https://github.com/sfalkner/pynisher"; 20 license = licenses.mit; 21 maintainers = with maintainers; [ psyanticy ]; 22 }; 23 24} 25