1{ stdenv, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "EasyProcess"; 5 version = "0.2.3"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "07z6485bjxkmx26mp1p1ww19d10qavw0s006bidzailsvk543qll"; 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}