Merge pull request #312802 from r-ryantm/auto-update/python311Packages.karton-core

python311Packages.karton-core: 5.3.4 -> 5.4.0
This commit is contained in:
Fabian Affolter 2024-05-19 20:23:39 +02:00 committed by GitHub
commit 4cb2d1883a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,31 +1,30 @@
{ lib {
, boto3 lib,
, buildPythonPackage boto3,
, fetchFromGitHub buildPythonPackage,
, orjson fetchFromGitHub,
, pythonOlder orjson,
, redis pythonOlder,
, setuptools redis,
, unittestCheckHook setuptools,
unittestCheckHook,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "karton-core"; pname = "karton-core";
version = "5.3.4"; version = "5.4.0";
pyproject = true; pyproject = true;
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.8";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "CERT-Polska"; owner = "CERT-Polska";
repo = "karton"; repo = "karton";
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-q12S80GZFyh7zU6iMeCkyIesMK8qXtZ1B69w8H5LpOU="; hash = "sha256-4IU4ttJdh5BU79076kbQOtzqzeQ3/Xb9Qd6Bh9iNXrA=";
}; };
build-system = [ build-system = [ setuptools ];
setuptools
];
dependencies = [ dependencies = [
boto3 boto3
@ -33,19 +32,18 @@ buildPythonPackage rec {
redis redis
]; ];
nativeCheckInputs = [ nativeCheckInputs = [ unittestCheckHook ];
unittestCheckHook
];
pythonImportsCheck = [ pythonImportsCheck = [ "karton.core" ];
"karton.core"
];
meta = with lib; { meta = with lib; {
description = "Distributed malware processing framework"; description = "Distributed malware processing framework";
homepage = "https://karton-core.readthedocs.io/"; homepage = "https://karton-core.readthedocs.io/";
changelog = "https://github.com/CERT-Polska/karton/releases/tag/v${version}"; changelog = "https://github.com/CERT-Polska/karton/releases/tag/v${version}";
license = licenses.bsd3; license = licenses.bsd3;
maintainers = with maintainers; [ chivay fab ]; maintainers = with maintainers; [
chivay
fab
];
}; };
} }