python312Packages.types-awscrt: 0.21.2 -> 0.21.5

Changelog: https://github.com/youtype/types-awscrt/releases/tag/0.21.5
This commit is contained in:
Fabian Affolter 2024-09-08 10:15:40 +02:00
parent e2938467e6
commit 30d3847f83

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" ];