From 30d3847f83dd65df00b563050ac7b29077d6ccd9 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 8 Sep 2024 10:15:40 +0200 Subject: [PATCH] python312Packages.types-awscrt: 0.21.2 -> 0.21.5 Changelog: https://github.com/youtype/types-awscrt/releases/tag/0.21.5 --- .../python-modules/types-awscrt/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/types-awscrt/default.nix b/pkgs/development/python-modules/types-awscrt/default.nix index 97f9f348d7e2..bbf905dcb82c 100644 --- a/pkgs/development/python-modules/types-awscrt/default.nix +++ b/pkgs/development/python-modules/types-awscrt/default.nix @@ -2,24 +2,24 @@ lib, buildPythonPackage, fetchPypi, - poetry-core, pythonOlder, + setuptools, }: buildPythonPackage rec { pname = "types-awscrt"; - version = "0.21.2"; + version = "0.21.5"; pyproject = true; - disabled = pythonOlder "3.7"; + disabled = pythonOlder "3.8"; src = fetchPypi { pname = "types_awscrt"; inherit version; - hash = "sha256-hKn09CLsUlwxT99Uwjoec+37zsloVglDyi1Bz65iOzg="; + hash = "sha256-n39H3mh5nLK8ueSG9I13ufWJYrkvukPLiGDacLPFfRs="; }; - build-system = [ poetry-core ]; + build-system = [ setuptools ]; pythonImportsCheck = [ "awscrt-stubs" ];