nixpkgs/pkgs/development/python-modules/zope_size/default.nix
Martin Weinelt 0215034f25 python3.pkgs: Migrate fetchers to use hash
when they already rely on SRI hashes.
2023-03-03 23:59:29 +01:00

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 ];
};
}