nixpkgs/pkgs/development/python-modules/zope-size/default.nix
2024-01-11 07:06:00 +00:00

27 lines
588 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 = with maintainers; [ goibhniu ];
};
}