1{ lib
2, buildPythonPackage
3, fetchPypi
4, zope_i18nmessageid
5, zope_interface
6}:
7
8buildPythonPackage rec {
9 pname = "zope.size";
10 version = "4.3";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "6f3eb687c9181e3b7400c5cd4d4209a2f676475b7b85c99ee11de2404b3493ec";
15 };
16
17 propagatedBuildInputs = [ zope_i18nmessageid zope_interface ];
18
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 };
25
26}