1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 zope-i18nmessageid, 6 zope-interface, 7}: 8 9buildPythonPackage rec { 10 pname = "zope.size"; 11 version = "5.0"; 12 13 src = fetchPypi { 14 inherit pname version; 15 hash = "sha256-sVRT40+Bb/VFmtg82TUCmqWBxqRTRj4DxeLZe9IKQyo="; 16 }; 17 18 propagatedBuildInputs = [ 19 zope-i18nmessageid 20 zope-interface 21 ]; 22 23 meta = with lib; { 24 homepage = "https://github.com/zopefoundation/zope.size"; 25 description = "Interfaces and simple adapter that give the size of an object"; 26 license = licenses.zpl20; 27 maintainers = with maintainers; [ goibhniu ]; 28 }; 29}