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