mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-07 21:43:32 +00:00
0215034f25
when they already rely on SRI hashes.
27 lines
588 B
Nix
27 lines
588 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, zope_i18nmessageid
|
|
, zope_interface
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "zope.size";
|
|
version = "4.4";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-bhv3QJdZtNpyAuL6/aZXWD1Acx8661VweWaItJPpkHk=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
|
|
}
|