1{
2 buildPythonPackage,
3 lib,
4 fetchFromGitHub,
5 setuptools,
6 pexpect,
7}:
8
9buildPythonPackage rec {
10 version = "0.1.1";
11 pname = "delegator-py";
12 pyproject = true;
13
14 src = fetchFromGitHub {
15 owner = "amitt001";
16 repo = "delegator.py";
17 tag = "v${version}";
18 hash = "sha256-i9OZkXcDqrKnCFJBBxP8PrHxPGF7DEgZr91p+fuAyZ4=";
19 };
20
21 build-system = [ setuptools ];
22
23 dependencies = [ pexpect ];
24
25 pythonImportsCheck = [ "delegator" ];
26
27 # no tests in github or pypi
28 doCheck = false;
29
30 meta = {
31 description = "Subprocesses for Humans 2.0";
32 homepage = "https://github.com/amitt001/delegator.py";
33 license = lib.licenses.mit;
34 maintainers = [ ];
35 };
36}