nixpkgs/pkgs/development/python-modules/zope-size/default.nix
Ivan Trubach 90fbf71333 treewide: remove maintainer goibhniu
Inactive in Nixpkgs since 2018 (and a single PR in 2022).
https://github.com/NixOS/nixpkgs/issues?q=author%3Acillianderoiste
2024-07-24 13:38:22 +03:00

30 lines
577 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
zope-i18nmessageid,
zope-interface,
}:
buildPythonPackage rec {
pname = "zope.size";
version = "5.0";
src = fetchPypi {
inherit pname version;
hash = "sha256-sVRT40+Bb/VFmtg82TUCmqWBxqRTRj4DxeLZe9IKQyo=";
};
propagatedBuildInputs = [
zope-i18nmessageid
zope-interface
];
meta = with lib; {
homepage = "https://github.com/zopefoundation/zope.size";
description = "Interfaces and simple adapter that give the size of an object";
license = licenses.zpl20;
maintainers = [ ];
};
}