Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
35 lines
723 B
Nix
35 lines
723 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
zope-interface,
|
|
zope-testing,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "tl-eggdeps";
|
|
version = "1.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit version;
|
|
pname = "tl.eggdeps";
|
|
sha256 = "a094ed7961a3dd38fcaaa69cf7a58670038acdff186360166d9e3d964b7a7323";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
zope-interface
|
|
zope-testing
|
|
];
|
|
|
|
# tests fail, see https://hydra.nixos.org/build/4316603/log/raw
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Tool which computes a dependency graph between active Python eggs";
|
|
mainProgram = "eggdeps";
|
|
homepage = "https://thomas-lotze.de/en/software/eggdeps/";
|
|
license = licenses.zpl20;
|
|
};
|
|
}
|