python312Packages.jinja2-strcase: init at 0.0.2 (#332802)
jinja2-strcase: init at 0.0.2 Co-authored-by: Arne Keller <arne.keller@posteo.de>
This commit is contained in:
co-authored by
Arne Keller
parent
02fd7b2cbb
commit
aa982b29ef
@@ -0,0 +1,40 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchPypi,
|
||||
freezegun,
|
||||
jinja2,
|
||||
pytestCheckHook,
|
||||
setuptools,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "jinja2-strcase";
|
||||
version = "0.0.2";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-2Qw3971A00WqzI94sIf2bmxapMloqyOnkVc/z3VsM3k=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
dependencies = [ jinja2 ];
|
||||
|
||||
nativeCheckInputs = [
|
||||
freezegun
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "jinja2_strcase" ];
|
||||
|
||||
doCheck = false; # no tests
|
||||
|
||||
meta = {
|
||||
homepage = "https://github.com/marchmiel/jinja2-strcase";
|
||||
description = "Library for converting string case in Jinja2 templates";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ crimeminister ];
|
||||
};
|
||||
}
|
||||
@@ -6618,6 +6618,8 @@ self: super: with self; {
|
||||
|
||||
jinja2-pluralize = callPackage ../development/python-modules/jinja2-pluralize { };
|
||||
|
||||
jinja2-strcase = callPackage ../development/python-modules/jinja2-strcase { };
|
||||
|
||||
jinja2-time = callPackage ../development/python-modules/jinja2-time { };
|
||||
|
||||
jira = callPackage ../development/python-modules/jira { };
|
||||
|
||||
Reference in New Issue
Block a user