Files
nixpkgs/pkgs/development/python-modules/eggdeps/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

35 lines
717 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 = {
description = "Tool which computes a dependency graph between active Python eggs";
mainProgram = "eggdeps";
homepage = "https://thomas-lotze.de/en/software/eggdeps/";
license = lib.licenses.zpl20;
};
}