blob: 450f1bde82c8f24e1fb99eff365f6d5ed54f2438 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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 ];
};
}
|