From 6110f58941a9b350fa58571749f6b3783d47b790 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 15 Nov 2025 23:18:35 +0100 Subject: [PATCH 1/2] python313Packages.types-awscrt: 0.28.2 -> 0.28.4 Changelog: https://github.com/youtype/types-awscrt/releases/tag/0.28.4 --- pkgs/development/python-modules/types-awscrt/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/types-awscrt/default.nix b/pkgs/development/python-modules/types-awscrt/default.nix index 22f329b3afac..69dbecefa95e 100644 --- a/pkgs/development/python-modules/types-awscrt/default.nix +++ b/pkgs/development/python-modules/types-awscrt/default.nix @@ -8,7 +8,7 @@ buildPythonPackage rec { pname = "types-awscrt"; - version = "0.28.2"; + version = "0.28.4"; pyproject = true; disabled = pythonOlder "3.8"; @@ -16,7 +16,7 @@ buildPythonPackage rec { src = fetchPypi { pname = "types_awscrt"; inherit version; - hash = "sha256-Q0m2/Hsc2cnreCcB+yE4dduJqxeBIZwOlH3XxNnc1l4="; + hash = "sha256-FZKdqEgC8nAZ7o5EhPscEC4fbUzyLrSGiMNKWobQLrY="; }; build-system = [ setuptools ]; From 9aff82470503405104588e7ab5ab4fe4cb769dd4 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 15 Nov 2025 23:21:03 +0100 Subject: [PATCH 2/2] python313Packages.types-awscrt: remove disabled --- pkgs/development/python-modules/types-awscrt/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/types-awscrt/default.nix b/pkgs/development/python-modules/types-awscrt/default.nix index 69dbecefa95e..d4a9f4a9dc0f 100644 --- a/pkgs/development/python-modules/types-awscrt/default.nix +++ b/pkgs/development/python-modules/types-awscrt/default.nix @@ -2,7 +2,6 @@ lib, buildPythonPackage, fetchPypi, - pythonOlder, setuptools, }: @@ -11,8 +10,6 @@ buildPythonPackage rec { version = "0.28.4"; pyproject = true; - disabled = pythonOlder "3.8"; - src = fetchPypi { pname = "types_awscrt"; inherit version; @@ -23,6 +20,9 @@ buildPythonPackage rec { pythonImportsCheck = [ "awscrt-stubs" ]; + # Module has no tests + doCheck = false; + meta = with lib; { description = "Type annotations and code completion for awscrt"; homepage = "https://github.com/youtype/types-awscrt";