about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/delegator-py/default.nix
blob: 3521e8ce129874258b80366d6a5f64bd0d059862 (plain) (blame)
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
{ 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 ];
  };
}