1{ buildPythonPackage
2, lib
3, fetchFromGitHub
4, pexpect
5}:
6
7buildPythonPackage rec {
8 version = "0.1.1";
9 pname = "delegator.py";
10
11 src = fetchFromGitHub {
12 owner = "amitt001";
13 repo = "delegator.py";
14 rev = "v${version}";
15 sha256 = "17n9h3xzjsfxmwclh33vc4yg3c9yzh9hfhaj12kv5ah3fy8rklwb";
16 };
17
18 propagatedBuildInputs = [ pexpect ];
19
20 # no tests in github or pypi
21 doCheck = false;
22
23 meta = with lib; {
24 description = "Subprocesses for Humans 2.0";
25 homepage = "https://github.com/amitt001/delegator.py";
26 license = licenses.mit;
27 maintainers = with maintainers; [ jonringer ];
28 };
29}