My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/jinja2_pluralize/default.nix

23 lines
529 B

{ lib, 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 lib; {
description = "Jinja2 pluralize filters";
homepage = "https://github.com/audreyr/jinja2_pluralize";
license = licenses.bsd3;
maintainers = with maintainers; [ dzabraev ];
};
}