about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/zope_i18nmessageid/default.nix
blob: cddcad007746bb56bef2eeff5c653571f41d309b (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 = "4.3.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "e511edff8e75d3a6f84d8256e1e468c85a4aa9d89c2ea264a919334fae7081e3";
  };

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

}