evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / delegator-py / default.nix
blob0e4fc71161a798d0a0ab32e77466f8e67ec170eb
2   buildPythonPackage,
3   lib,
4   fetchFromGitHub,
5   pexpect,
6 }:
8 buildPythonPackage rec {
9   version = "0.1.1";
10   pname = "delegator.py";
12   src = fetchFromGitHub {
13     owner = "amitt001";
14     repo = "delegator.py";
15     rev = "v${version}";
16     sha256 = "17n9h3xzjsfxmwclh33vc4yg3c9yzh9hfhaj12kv5ah3fy8rklwb";
17   };
19   propagatedBuildInputs = [ pexpect ];
21   # no tests in github or pypi
22   doCheck = false;
24   meta = with lib; {
25     description = "Subprocesses for Humans 2.0";
26     homepage = "https://github.com/amitt001/delegator.py";
27     license = licenses.mit;
28     maintainers = [ ];
29   };