Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 638 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, zope_interface 5, zope_testing 6}: 7 8buildPythonPackage rec { 9 pname = "eggdeps"; 10 version = "0.4"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "a99de5e4652865224daab09b2e2574a4f7c1d0d9a267048f9836aa914a2caf3a"; 15 }; 16 17 propagatedBuildInputs = [ zope_interface zope_testing ]; 18 19 # tests fail, see http://hydra.nixos.org/build/4316603/log/raw 20 doCheck = false; 21 22 meta = with stdenv.lib; { 23 description = "A tool which computes a dependency graph between active Python eggs"; 24 homepage = http://thomas-lotze.de/en/software/eggdeps/; 25 license = licenses.zpl20; 26 }; 27 28}