mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-22 21:53:32 +00:00
27 lines
600 B
Nix
27 lines
600 B
Nix
|
{ stdenv
|
||
|
, buildPythonPackage
|
||
|
, fetchPypi
|
||
|
, zope_i18nmessageid
|
||
|
, zope_interface
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "zope.size";
|
||
|
version = "3.5.0";
|
||
|
|
||
|
src = fetchPypi {
|
||
|
inherit pname version;
|
||
|
sha256 = "006xfkhvmypwd3ww9gbba4zly7n9w30bpp1h74d53la7l7fiqk2f";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ zope_i18nmessageid zope_interface ];
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
homepage = http://github.com/zopefoundation/zope.size;
|
||
|
description = "Interfaces and simple adapter that give the size of an object";
|
||
|
license = licenses.zpl20;
|
||
|
maintainers = with maintainers; [ goibhniu ];
|
||
|
};
|
||
|
|
||
|
}
|