Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 21 lines 515 B view raw
1{ stdenv, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "EasyProcess"; 5 version = "0.2.7"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "f757cd16cdab5b87117b4ee6cf197f99bfa109253364c7bd717ad0bcd39218a0"; 10 }; 11 12 # No tests 13 doCheck = false; 14 15 meta = with stdenv.lib; { 16 description = "Easy to use python subprocess interface"; 17 homepage = https://github.com/ponty/EasyProcess; 18 license = licenses.bsdOriginal; 19 maintainers = with maintainers; [ layus ]; 20 }; 21}