nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

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>

authored by

Robert Medeiros
Arne Keller
and committed by
GitHub
aa982b29 02fd7b2c

+42
+40
pkgs/development/python-modules/jinja2-strcase/default.nix
··· 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchPypi, 5 + freezegun, 6 + jinja2, 7 + pytestCheckHook, 8 + setuptools, 9 + }: 10 + 11 + buildPythonPackage rec { 12 + pname = "jinja2-strcase"; 13 + version = "0.0.2"; 14 + pyproject = true; 15 + 16 + src = fetchPypi { 17 + inherit pname version; 18 + hash = "sha256-2Qw3971A00WqzI94sIf2bmxapMloqyOnkVc/z3VsM3k="; 19 + }; 20 + 21 + build-system = [ setuptools ]; 22 + 23 + dependencies = [ jinja2 ]; 24 + 25 + nativeCheckInputs = [ 26 + freezegun 27 + pytestCheckHook 28 + ]; 29 + 30 + pythonImportsCheck = [ "jinja2_strcase" ]; 31 + 32 + doCheck = false; # no tests 33 + 34 + meta = { 35 + homepage = "https://github.com/marchmiel/jinja2-strcase"; 36 + description = "Library for converting string case in Jinja2 templates"; 37 + license = lib.licenses.mit; 38 + maintainers = with lib.maintainers; [ crimeminister ]; 39 + }; 40 + }
+2
pkgs/top-level/python-packages.nix
··· 6618 6618 6619 6619 jinja2-pluralize = callPackage ../development/python-modules/jinja2-pluralize { }; 6620 6620 6621 + jinja2-strcase = callPackage ../development/python-modules/jinja2-strcase { }; 6622 + 6621 6623 jinja2-time = callPackage ../development/python-modules/jinja2-time { }; 6622 6624 6623 6625 jira = callPackage ../development/python-modules/jira { };