1{ stdenv, buildPythonPackage, fetchPypi, psutil, docutils }: 2 3buildPythonPackage rec { 4 pname = "pynisher"; 5 version = "0.4.2"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "0sqa3zzqcr4vl5yhnafw1y187z62m4alajggc7dm2riw2ihd9kxl"; 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