30 lines
654 B
Nix
30 lines
654 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, zope_interface
|
|
, zope_testing
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "tl-eggdeps";
|
|
version = "0.4";
|
|
|
|
src = fetchPypi {
|
|
inherit version;
|
|
pname = "tl.eggdeps";
|
|
sha256 = "a99de5e4652865224daab09b2e2574a4f7c1d0d9a267048f9836aa914a2caf3a";
|
|
};
|
|
|
|
propagatedBuildInputs = [ zope_interface zope_testing ];
|
|
|
|
# tests fail, see https://hydra.nixos.org/build/4316603/log/raw
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "A tool which computes a dependency graph between active Python eggs";
|
|
homepage = "http://thomas-lotze.de/en/software/eggdeps/";
|
|
license = licenses.zpl20;
|
|
};
|
|
|
|
}
|