Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at litex 588 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, zope_i18nmessageid 5, zope_interface 6}: 7 8buildPythonPackage rec { 9 pname = "zope.size"; 10 version = "4.4"; 11 12 src = fetchPypi { 13 inherit pname version; 14 hash = "sha256-bhv3QJdZtNpyAuL6/aZXWD1Acx8661VweWaItJPpkHk="; 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}