Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ stdenv, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "EasyProcess"; 5 version = "0.2.5"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "0gdl6y37g8rns2i26d2zlx7x4kbpql9h5qd8k23ka69q6frcpb8k"; 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}