python313Packages.aioboto3: 14.2.0 -> 14.3.0, python313Packages.karton-core: 5.7.0 -> 5.8.0 (#420177)

This commit is contained in:
Fabian Affolter
2025-06-26 16:13:28 +02:00
committed by GitHub
2 changed files with 6 additions and 6 deletions
@@ -16,14 +16,14 @@
buildPythonPackage rec {
pname = "aioboto3";
version = "14.2.0";
version = "14.3.0";
pyproject = true;
src = fetchFromGitHub {
owner = "terrycain";
repo = "aioboto3";
tag = "v${version}";
hash = "sha256-RzaMsJtGvC6IILgwj09kymw+Hv3gjyBf2PHBzYC9itE=";
hash = "sha256-3GdTpbU0uEEzezQPHJTGPB42Qu604eIhcIAP4rZMQiY=";
};
pythonRelaxDeps = [
@@ -1,6 +1,6 @@
{
lib,
boto3,
aioboto3,
buildPythonPackage,
fetchFromGitHub,
orjson,
@@ -12,7 +12,7 @@
buildPythonPackage rec {
pname = "karton-core";
version = "5.7.0";
version = "5.8.0";
pyproject = true;
disabled = pythonOlder "3.8";
@@ -21,7 +21,7 @@ buildPythonPackage rec {
owner = "CERT-Polska";
repo = "karton";
tag = "v${version}";
hash = "sha256-XmhOPtgrK5rgnYsm5cj1kjJw/yClskVCT6RpDIepbvc=";
hash = "sha256-OWaGjH9FKv5FOG6ttoT+zvLKcrD4j6y1cSpArtCEn4w=";
};
build-system = [ setuptools ];
@@ -29,7 +29,7 @@ buildPythonPackage rec {
pythonRelaxDeps = [ "boto3" ];
dependencies = [
boto3
aioboto3
orjson
redis
];