My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/zope_size/default.nix

26 lines
603 B

{ lib
, buildPythonPackage
, fetchPypi
, zope_i18nmessageid
, zope_interface
}:
buildPythonPackage rec {
pname = "zope.size";
version = "4.3";
src = fetchPypi {
inherit pname version;
sha256 = "6f3eb687c9181e3b7400c5cd4d4209a2f676475b7b85c99ee11de2404b3493ec";
};
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 ];
};
}