1{ lib, buildPythonPackage, fetchPypi }:
2
3buildPythonPackage rec {
4 pname = "EasyProcess";
5 version = "1.1";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "sha256-iFiYMCpXqrlIlz6LXTKkIpOSufstmGqx1P/VkOW6kOw=";
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}