1{ lib, buildPythonPackage, fetchPypi, psutil, docutils }: 2 3buildPythonPackage rec { 4 pname = "pynisher"; 5 version = "0.6.4"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "111d91aad471375c0509a912415ff90053ef909100facf412511383af107c124"; 10 }; 11 12 propagatedBuildInputs = [ psutil docutils ]; 13 14 # no tests in the Pypi archive 15 doCheck = false; 16 17 meta = with 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