Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "process-tests"; 8 version = "2.0.2"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "7ae24a680cc7c44e7687e3723e6e64597a28223ad664989999efe10dd38c2431"; 13 }; 14 15 # No tests 16 doCheck = false; 17 18 meta = with stdenv.lib; { 19 description = "Tools for testing processes"; 20 license = licenses.bsd2; 21 homepage = https://github.com/ionelmc/python-process-tests; 22 }; 23 24}