mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-06 09:12:35 +03:00
24 lines
537 B
Nix
24 lines
537 B
Nix
{ 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 ];
|
|
};
|
|
}
|