jinja2_pluralize: init at 0.3.0
This commit is contained in:
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 ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user