1{ lib, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "easyprocess"; 5 version = "1.1"; 6 7 src = fetchPypi { 8 pname = "EasyProcess"; 9 inherit version; 10 hash = "sha256-iFiYMCpXqrlIlz6LXTKkIpOSufstmGqx1P/VkOW6kOw="; 11 }; 12 13 # No tests 14 doCheck = false; 15 16 meta = with lib; { 17 description = "Easy to use python subprocess interface"; 18 homepage = "https://github.com/ponty/EasyProcess"; 19 license = licenses.bsdOriginal; 20 maintainers = with maintainers; [ layus ]; 21 }; 22}