python3Packages.types-jinja2: init at 2.11.9

This commit is contained in:
Guilhem Saurel
2024-12-17 21:47:08 +01:00
parent b63d839856
commit 3adb286e07
2 changed files with 37 additions and 0 deletions
@@ -0,0 +1,35 @@
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
types-markupsafe,
}:
buildPythonPackage rec {
pname = "types-jinja2";
version = "2.11.9";
pyproject = true;
src = fetchPypi {
pname = "types-Jinja2";
inherit version;
hash = "sha256-29x0pAq6eu1SC35Niejw/kKGUYSUIIs1EjvPCE1LjIE=";
};
build-system = [
setuptools
];
dependencies = [
types-markupsafe
];
meta = {
description = "Typing stubs for Jinja2";
homepage = "https://pypi.org/project/types-Jinja2/";
changelog = "https://github.com/typeshed-internal/stub_uploader/blob/main/data/changelogs/MarkupSafe.md";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ nim65s ];
};
}
+2
View File
@@ -17241,6 +17241,8 @@ self: super: with self; {
types-ipaddress = callPackage ../development/python-modules/types-ipaddress { };
types-jinja2 = callPackage ../development/python-modules/types-jinja2 { };
types-lxml = callPackage ../development/python-modules/types-lxml { };
types-markdown = callPackage ../development/python-modules/types-markdown { };