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

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "9534142b684c986f5303f469573978e5a340f05ba2eee4f872933f1c38b1b059";
  };

  propagatedBuildInputs = [ six ];

  checkInputs = [ coverage zope_testrunner ];

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

}