Unverified Commit 4cb2d188 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

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

python311Packages.karton-core: 5.3.4 -> 5.4.0
parents d1107e1f ee3eb65c
Loading
Loading
Loading
Loading
+20 −22
Original line number Diff line number Diff line
{ lib
, boto3
, buildPythonPackage
, fetchFromGitHub
, orjson
, pythonOlder
, redis
, setuptools
, unittestCheckHook
{
  lib,
  boto3,
  buildPythonPackage,
  fetchFromGitHub,
  orjson,
  pythonOlder,
  redis,
  setuptools,
  unittestCheckHook,
}:

buildPythonPackage rec {
  pname = "karton-core";
  version = "5.3.4";
  version = "5.4.0";
  pyproject = true;

  disabled = pythonOlder "3.7";
  disabled = pythonOlder "3.8";

  src = fetchFromGitHub {
    owner = "CERT-Polska";
    repo = "karton";
    rev = "refs/tags/v${version}";
    hash = "sha256-q12S80GZFyh7zU6iMeCkyIesMK8qXtZ1B69w8H5LpOU=";
    hash = "sha256-4IU4ttJdh5BU79076kbQOtzqzeQ3/Xb9Qd6Bh9iNXrA=";
  };

  build-system = [
    setuptools
  ];
  build-system = [ setuptools ];

  dependencies = [
    boto3
@@ -33,19 +32,18 @@ buildPythonPackage rec {
    redis
  ];

  nativeCheckInputs = [
    unittestCheckHook
  ];
  nativeCheckInputs = [ unittestCheckHook ];

  pythonImportsCheck = [
    "karton.core"
  ];
  pythonImportsCheck = [ "karton.core" ];

  meta = with lib; {
    description = "Distributed malware processing framework";
    homepage = "https://karton-core.readthedocs.io/";
    changelog = "https://github.com/CERT-Polska/karton/releases/tag/v${version}";
    license = licenses.bsd3;
    maintainers = with maintainers; [ chivay fab ];
    maintainers = with maintainers; [
      chivay
      fab
    ];
  };
}