python312Packages.types-awscrt: 0.21.2 -> 0.21.5 (#340463)

This commit is contained in:
Fabian Affolter 2024-09-08 13:37:06 +02:00 committed by GitHub
commit 500fa77877
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,24 +2,24 @@
lib, lib,
buildPythonPackage, buildPythonPackage,
fetchPypi, fetchPypi,
poetry-core,
pythonOlder, pythonOlder,
setuptools,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "types-awscrt"; pname = "types-awscrt";
version = "0.21.2"; version = "0.21.5";
pyproject = true; pyproject = true;
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.8";
src = fetchPypi { src = fetchPypi {
pname = "types_awscrt"; pname = "types_awscrt";
inherit version; inherit version;
hash = "sha256-hKn09CLsUlwxT99Uwjoec+37zsloVglDyi1Bz65iOzg="; hash = "sha256-n39H3mh5nLK8ueSG9I13ufWJYrkvukPLiGDacLPFfRs=";
}; };
build-system = [ poetry-core ]; build-system = [ setuptools ];
pythonImportsCheck = [ "awscrt-stubs" ]; pythonImportsCheck = [ "awscrt-stubs" ];