mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-03 19:43:30 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
34 lines
697 B
Nix
34 lines
697 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
zope-interface,
|
|
zope-testing,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "tl-eggdeps";
|
|
version = "1.0";
|
|
|
|
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 = "http://thomas-lotze.de/en/software/eggdeps/";
|
|
license = licenses.zpl20;
|
|
};
|
|
}
|