about summary refs log tree commit diff
path: root/pkgs/development/python-modules/zope_i18nmessageid/default.nix
blob: bf1dc7e0b6b06e7d7573d8043de6977a4409c11f (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
{ stdenv
, buildPythonPackage
, fetchPypi
, six
}:

buildPythonPackage rec {
  pname = "zope.i18nmessageid";
  version = "5.0.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "03318270df5320c57b3416744f9cb2a85160a8d00345c07ac35d2b7ac01ff50c";
  };

  propagatedBuildInputs = [ six ];

  meta = with stdenv.lib; {
    homepage = "https://github.com/zopefoundation/zope.i18nmessageid";
    description = "Message Identifiers for internationalization";
    license = licenses.zpl20;
    maintainers = with maintainers; [ goibhniu ];
  };

}