forked from mirrors/nixpkgs
jinja2_pluralize: init at 0.3.0
This commit is contained in:
parent
3d2948e009
commit
87b2e17463
23
pkgs/development/python-modules/jinja2_pluralize/default.nix
Normal file
23
pkgs/development/python-modules/jinja2_pluralize/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{ stdenv, buildPythonPackage, fetchPypi, jinja2, inflect }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "jinja2_pluralize";
|
||||
version = "0.3.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "071wnzzz20wjb0iw7grxgj1lb2f0kz50qyfbcq54rddr2x82sp6z";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
jinja2
|
||||
inflect
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Jinja2 pluralize filters";
|
||||
homepage = https://github.com/audreyr/jinja2_pluralize;
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ dzabraev ];
|
||||
};
|
||||
}
|
|
@ -9471,6 +9471,8 @@ in {
|
|||
};
|
||||
};
|
||||
|
||||
jinja2_pluralize = callPackage ../development/python-modules/jinja2_pluralize { };
|
||||
|
||||
jmespath = buildPythonPackage rec {
|
||||
name = "jmespath-0.9.0";
|
||||
|
||||
|
|
Loading…
Reference in a new issue