python311Packages.karton-core: 5.1.0 -> 5.2.0

Diff: https://github.com/CERT-Polska/karton/compare/refs/tags/v5.1.0...v5.2.0

Changelog: https://github.com/CERT-Polska/karton/releases/tag/v5.2.0
This commit is contained in:
Fabian Affolter 2023-08-04 21:07:30 +02:00
parent f6f02db1e8
commit fa28015ded

View File

@ -2,6 +2,7 @@
, boto3
, buildPythonPackage
, fetchFromGitHub
, orjson
, unittestCheckHook
, pythonOlder
, redis
@ -9,7 +10,7 @@
buildPythonPackage rec {
pname = "karton-core";
version = "5.1.0";
version = "5.2.0";
format = "setuptools";
disabled = pythonOlder "3.7";
@ -18,11 +19,12 @@ buildPythonPackage rec {
owner = "CERT-Polska";
repo = "karton";
rev = "refs/tags/v${version}";
hash = "sha256-IhxMei6KkPsDnUkV4+zxSMI7rgZgOvbHQFqJAC1b5iw=";
hash = "sha256-1Bv0e218cvLuv/go0L13C39fFAeo0FJeCoU+XFUBhzk=";
};
propagatedBuildInputs = [
boto3
orjson
redis
];