Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / zope-size / default.nix
bloba6ef2a58855004f3b9cbde72d55cea3a9414fd87
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , zope-i18nmessageid
5 , zope-interface
6 }:
8 buildPythonPackage rec {
9   pname = "zope.size";
10   version = "5.0";
12   src = fetchPypi {
13     inherit pname version;
14     hash = "sha256-sVRT40+Bb/VFmtg82TUCmqWBxqRTRj4DxeLZe9IKQyo=";
15   };
17   propagatedBuildInputs = [ zope-i18nmessageid zope-interface ];
19   meta = with lib; {
20     homepage = "https://github.com/zopefoundation/zope.size";
21     description = "Interfaces and simple adapter that give the size of an object";
22     license = licenses.zpl20;
23     maintainers = with maintainers; [ goibhniu ];
24   };