about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/zope-size/default.nix
blob: a6ef2a58855004f3b9cbde72d55cea3a9414fd87 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ lib
, buildPythonPackage
, fetchPypi
, zope-i18nmessageid
, zope-interface
}:

buildPythonPackage rec {
  pname = "zope.size";
  version = "5.0";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-sVRT40+Bb/VFmtg82TUCmqWBxqRTRj4DxeLZe9IKQyo=";
  };

  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 ];
  };

}