2018-10-28 15:52:36 +00:00
|
|
|
{ stdenv
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, zope_interface
|
|
|
|
, zope_testing
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2019-04-24 06:08:00 +01:00
|
|
|
pname = "tl-eggdeps";
|
2018-10-28 15:52:36 +00:00
|
|
|
version = "0.4";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
2019-04-24 06:08:00 +01:00
|
|
|
inherit version;
|
|
|
|
pname = "tl.eggdeps";
|
2018-10-28 15:52:36 +00:00
|
|
|
sha256 = "a99de5e4652865224daab09b2e2574a4f7c1d0d9a267048f9836aa914a2caf3a";
|
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ zope_interface zope_testing ];
|
|
|
|
|
2020-04-18 21:51:19 +01:00
|
|
|
# tests fail, see https://hydra.nixos.org/build/4316603/log/raw
|
2018-10-28 15:52:36 +00:00
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A tool which computes a dependency graph between active Python eggs";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://thomas-lotze.de/en/software/eggdeps/";
|
2018-10-28 15:52:36 +00:00
|
|
|
license = licenses.zpl20;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|