Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 buildPythonPackage, 3 lib, 4 fetchFromGitHub, 5 pexpect, 6}: 7 8buildPythonPackage rec { 9 version = "0.1.1"; 10 pname = "delegator.py"; 11 12 src = fetchFromGitHub { 13 owner = "amitt001"; 14 repo = "delegator.py"; 15 rev = "v${version}"; 16 sha256 = "17n9h3xzjsfxmwclh33vc4yg3c9yzh9hfhaj12kv5ah3fy8rklwb"; 17 }; 18 19 propagatedBuildInputs = [ pexpect ]; 20 21 # no tests in github or pypi 22 doCheck = false; 23 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 }; 30}