python311Packages.types-html5lib: init at 1.1.11.15

This commit is contained in:
Fabian Affolter 2023-08-25 18:29:37 +02:00
parent 8abe4a3a95
commit 019f208ada
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "types-html5lib";
version = "1.1.11.15";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-gOGiBi0io6/+XCjZfaML/786B205PID8bxZxIWwb1JI=";
};
# Module has no tests
doCheck = false;
pythonImportsCheck = [
"html5lib-stubs"
];
meta = with lib; {
description = "Typing stubs for html5lib";
homepage = "https://pypi.org/project/types-html5lib/";
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ fab ];
};
}

View file

@ -13134,6 +13134,8 @@ self: super: with self; {
types-futures = callPackage ../development/python-modules/types-futures { };
types-html5lib = callPackage ../development/python-modules/types-html5lib { };
types-ipaddress = callPackage ../development/python-modules/types-ipaddress { };
types-mock = callPackage ../development/python-modules/types-mock { };