mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-24 01:21:11 +00:00
python3Packages.types-jinja2: init at 2.11.9 (#365989)
This commit is contained in:
35
pkgs/development/python-modules/types-jinja2/default.nix
Normal file
35
pkgs/development/python-modules/types-jinja2/default.nix
Normal file
@@ -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 ];
|
||||
};
|
||||
}
|
||||
30
pkgs/development/python-modules/types-markupsafe/default.nix
Normal file
30
pkgs/development/python-modules/types-markupsafe/default.nix
Normal file
@@ -0,0 +1,30 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchPypi,
|
||||
setuptools,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "types-markupsafe";
|
||||
version = "1.1.10";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchPypi {
|
||||
pname = "types-MarkupSafe";
|
||||
inherit version;
|
||||
hash = "sha256-hbOocmg9Aq6jpawqjvWQGTw0QJIDL1hFcof7+OBnEbE=";
|
||||
};
|
||||
|
||||
build-system = [
|
||||
setuptools
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "Typing stubs for MarkupSafe";
|
||||
homepage = "https://pypi.org/project/types-markupsafe";
|
||||
changelog = "https://github.com/typeshed-internal/stub_uploader/blob/main/data/changelogs/MarkupSafe.md";
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = with lib.maintainers; [ nim65s ];
|
||||
};
|
||||
}
|
||||
29
pkgs/development/python-modules/types-xxhash/default.nix
Normal file
29
pkgs/development/python-modules/types-xxhash/default.nix
Normal file
@@ -0,0 +1,29 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchPypi,
|
||||
setuptools,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "types-xxhash";
|
||||
version = "3.0.5.2";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-mfJ/CvFGvrovEIZ30reYCv6N33NZtEUYG/xxOdt2SC4=";
|
||||
};
|
||||
|
||||
build-system = [
|
||||
setuptools
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "Typing stubs for xxhash";
|
||||
homepage = "https://pypi.org/project/types-xxhash";
|
||||
changelog = "https://github.com/typeshed-internal/stub_uploader/blob/main/data/changelogs/xxhash.md";
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = with lib.maintainers; [ nim65s ];
|
||||
};
|
||||
}
|
||||
@@ -17253,10 +17253,14 @@ 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 { };
|
||||
|
||||
types-markupsafe = callPackage ../development/python-modules/types-markupsafe { };
|
||||
|
||||
types-mock = callPackage ../development/python-modules/types-mock { };
|
||||
|
||||
types-pillow = callPackage ../development/python-modules/types-pillow { };
|
||||
@@ -17297,6 +17301,8 @@ self: super: with self; {
|
||||
|
||||
types-urllib3 = callPackage ../development/python-modules/types-urllib3 { };
|
||||
|
||||
types-xxhash = callPackage ../development/python-modules/types-xxhash { };
|
||||
|
||||
typesentry = callPackage ../development/python-modules/typesentry { };
|
||||
|
||||
typeshed-client = callPackage ../development/python-modules/typeshed-client { };
|
||||
|
||||
Reference in New Issue
Block a user