nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, six
5}:
6
7buildPythonPackage rec {
8 pname = "zope.i18nmessageid";
9 version = "5.0.0";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "03318270df5320c57b3416744f9cb2a85160a8d00345c07ac35d2b7ac01ff50c";
14 };
15
16 propagatedBuildInputs = [ six ];
17
18 meta = with stdenv.lib; {
19 homepage = https://github.com/zopefoundation/zope.i18nmessageid;
20 description = "Message Identifiers for internationalization";
21 license = licenses.zpl20;
22 maintainers = with maintainers; [ goibhniu ];
23 };
24
25}