blob: 49af8d021990a240d6c10cb6b3784c9556727559 (
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
|
{
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 ];
};
}
|