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