Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / zope-i18nmessageid / default.nix
blobfa8f4c1a30ee665ebabebb390f17979e950bf795
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , zope_testrunner
5 , unittestCheckHook
6 }:
8 buildPythonPackage rec {
9   pname = "zope-i18nmessageid";
10   version = "6.0.1";
11   format = "setuptools";
13   src = fetchPypi {
14     pname = "zope.i18nmessageid";
15     inherit version;
16     hash = "sha256-LVvOb7MfHOoO+iZEZJvIZ9KXIwPx272f/vzlsuueAXY=";
17   };
19   nativeCheckInputs = [
20     unittestCheckHook
21     zope_testrunner
22   ];
24   unittestFlagsArray = [
25     "src/zope/i18nmessageid"
26   ];
28   pythonImportsCheck = [
29     "zope.i18nmessageid"
30   ];
32   meta = with lib; {
33     homepage = "https://github.com/zopefoundation/zope.i18nmessageid";
34     description = "Message Identifiers for internationalization";
35     changelog = "https://github.com/zopefoundation/zope.i18nmessageid/blob/${version}/CHANGES.rst";
36     license = licenses.zpl20;
37     maintainers = with maintainers; [ goibhniu ];
38   };