Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / jinja2-pluralize / default.nix
blob79416be375645c7b0f158eb1774597aa599828a3
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , jinja2
5 , inflect
6 , pytestCheckHook
7 }:
9 buildPythonPackage rec {
10   pname = "jinja2-pluralize";
11   version = "0.3.0";
12   format = "setuptools";
14   src = fetchPypi {
15     pname = "jinja2_pluralize";
16     inherit version;
17     hash = "sha256-31wtUBe5tUwKZst5DMqfwIlFg3w9v8MjWJID8f+3PBw=";
18   };
20   propagatedBuildInputs = [
21     jinja2
22     inflect
23   ];
25   nativeCheckInputs = [
26     pytestCheckHook
27   ];
29   pythonImportsCheck = [
30     "jinja2_pluralize"
31   ];
33   meta = with lib; {
34     description = "Jinja2 pluralize filters";
35     homepage = "https://github.com/audreyr/jinja2_pluralize";
36     license = licenses.bsd3;
37     maintainers = with maintainers; [ dzabraev ];
38   };