From 9988c02d49afbad15082a58129075a8c47e4ae67 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 16 Nov 2025 23:08:47 +0100 Subject: [PATCH 1/2] python313Packages.types-webencodings: init at 0.5.0.20251108 Typing stubs for webencodings https://pypi.org/project/types-webencodings/ --- .../types-webencodings/default.nix | 29 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 31 insertions(+) create mode 100644 pkgs/development/python-modules/types-webencodings/default.nix diff --git a/pkgs/development/python-modules/types-webencodings/default.nix b/pkgs/development/python-modules/types-webencodings/default.nix new file mode 100644 index 000000000000..976a306d7518 --- /dev/null +++ b/pkgs/development/python-modules/types-webencodings/default.nix @@ -0,0 +1,29 @@ +{ + lib, + buildPythonPackage, + fetchPypi, + setuptools, +}: + +buildPythonPackage rec { + pname = "types-webencodings"; + version = "0.5.0.20251108"; + pyproject = true; + + src = fetchPypi { + pname = "types_webencodings"; + inherit version; + hash = "sha256-I3jizszO09QbteITh1hue1MF4RUZ/GsGWcYp8jsuXeQ="; + }; + + build-system = [ setuptools ]; + + pythonImportsCheck = [ "webencodings-stubs" ]; + + meta = { + description = "Typing stubs for webencodings"; + homepage = "https://pypi.org/project/types-webencodings/"; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index c329b9451f48..d59b5823ba4a 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -19593,6 +19593,8 @@ self: super: with self; { types-urllib3 = callPackage ../development/python-modules/types-urllib3 { }; + types-webencodings = callPackage ../development/python-modules/types-webencodings { }; + types-xxhash = callPackage ../development/python-modules/types-xxhash { }; typesentry = callPackage ../development/python-modules/typesentry { }; From e5c39f2b722a245611123a9f685e2666a19b7bbb Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 16 Nov 2025 23:09:56 +0100 Subject: [PATCH 2/2] python313Packages.types-html5lib: 1.1.11.20251014 -> 1.1.11.20251115 --- .../python-modules/types-html5lib/default.nix | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/types-html5lib/default.nix b/pkgs/development/python-modules/types-html5lib/default.nix index fe97669f03fd..d8fae7e6ae16 100644 --- a/pkgs/development/python-modules/types-html5lib/default.nix +++ b/pkgs/development/python-modules/types-html5lib/default.nix @@ -3,20 +3,23 @@ buildPythonPackage, fetchPypi, setuptools, + types-webencodings, }: buildPythonPackage rec { pname = "types-html5lib"; - version = "1.1.11.20251014"; + version = "1.1.11.20251115"; pyproject = true; src = fetchPypi { pname = "types_html5lib"; inherit version; - hash = "sha256-zGKNYm4BEaJCamT18GHs/RE5WLaf9rPcDqrtI0e6lFU="; + hash = "sha256-pLZmoG5JbXsqlInckgbwmiSfq3xihlrGAkzsJGKLFdM="; }; - nativeBuildInputs = [ setuptools ]; + build-system = [ setuptools ]; + + dependencies = [ types-webencodings ]; # Module has no tests doCheck = false;