python3Packages.types-markupsafe: init at 1.1.10

This commit is contained in:
Guilhem Saurel
2024-12-17 21:47:08 +01:00
parent 96ec911551
commit b63d839856
2 changed files with 32 additions and 0 deletions
@@ -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 ];
};
}
+2
View File
@@ -17245,6 +17245,8 @@ self: super: with self; {
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 { };