1{ lib, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "EasyProcess"; 5 version = "0.3"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "115rzzr0hx4af4m6krf7dxn8851n4l8jfxahjzjc2r0zq2m8v57v"; 10 }; 11 12 # No tests 13 doCheck = false; 14 15 meta = with 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}