pythonPackages.delegator-py: init at 0.1.1
This commit is contained in:
parent
9e6693954a
commit
fcd2858063
30
pkgs/development/python-modules/delegator-py/default.nix
Normal file
30
pkgs/development/python-modules/delegator-py/default.nix
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
{ buildPythonPackage
|
||||||
|
, lib
|
||||||
|
, fetchFromGitHub
|
||||||
|
, pexpect
|
||||||
|
, pytest
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
version = "0.1.1";
|
||||||
|
pname = "delegator.py";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "amitt001";
|
||||||
|
repo = "delegator.py";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "17n9h3xzjsfxmwclh33vc4yg3c9yzh9hfhaj12kv5ah3fy8rklwb";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ pexpect ];
|
||||||
|
|
||||||
|
# no tests in github or pypi
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Subprocesses for Humans 2.0";
|
||||||
|
homepage = "https://github.com/amitt001/delegator.py";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ jonringer ];
|
||||||
|
};
|
||||||
|
}
|
@ -1384,6 +1384,8 @@ in {
|
|||||||
gui = false;
|
gui = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
delegator-py = callPackage ../development/python-modules/delegator-py { };
|
||||||
|
|
||||||
deluge-client = callPackage ../development/python-modules/deluge-client { };
|
deluge-client = callPackage ../development/python-modules/deluge-client { };
|
||||||
|
|
||||||
arrow = callPackage ../development/python-modules/arrow { };
|
arrow = callPackage ../development/python-modules/arrow { };
|
||||||
|
Loading…
Reference in New Issue
Block a user