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