about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2024-02-29 21:24:38 +0100
committerGitHub <noreply@github.com>2024-02-29 21:24:38 +0100
commitbf96e409940b8040ef6ba8e9af0f0f1a12e3cbf2 (patch)
tree3c4c3de52dd206b87a9fc0e7940cce19fb032a4d
parent38b4afea96906fc6b86e98a78c68ff0a10fa7fd8 (diff)
parent6804dd51a7e0a566993c27e8bf20955fc7ae7246 (diff)
downloadnixlib-bf96e409940b8040ef6ba8e9af0f0f1a12e3cbf2.tar
nixlib-bf96e409940b8040ef6ba8e9af0f0f1a12e3cbf2.tar.gz
nixlib-bf96e409940b8040ef6ba8e9af0f0f1a12e3cbf2.tar.bz2
nixlib-bf96e409940b8040ef6ba8e9af0f0f1a12e3cbf2.tar.lz
nixlib-bf96e409940b8040ef6ba8e9af0f0f1a12e3cbf2.tar.xz
nixlib-bf96e409940b8040ef6ba8e9af0f0f1a12e3cbf2.tar.zst
nixlib-bf96e409940b8040ef6ba8e9af0f0f1a12e3cbf2.zip
Merge pull request #292397 from fabaff/karton-core-bump
python311Packages.karton-core: 5.3.2 -> 5.3.3 
-rw-r--r--pkgs/development/python-modules/karton-core/default.nix13
1 files changed, 9 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/karton-core/default.nix b/pkgs/development/python-modules/karton-core/default.nix
index a934b793c60e..6746fd6eb710 100644
--- a/pkgs/development/python-modules/karton-core/default.nix
+++ b/pkgs/development/python-modules/karton-core/default.nix
@@ -3,15 +3,16 @@
 , buildPythonPackage
 , fetchFromGitHub
 , orjson
-, unittestCheckHook
 , pythonOlder
 , redis
+, setuptools
+, unittestCheckHook
 }:
 
 buildPythonPackage rec {
   pname = "karton-core";
-  version = "5.3.2";
-  format = "setuptools";
+  version = "5.3.3";
+  pyproject = true;
 
   disabled = pythonOlder "3.7";
 
@@ -19,9 +20,13 @@ buildPythonPackage rec {
     owner = "CERT-Polska";
     repo = "karton";
     rev = "refs/tags/v${version}";
-    hash = "sha256-/MPD83sBo9n/dI1uXbHbjvz6upJSJrssMGmGwfQ+KE8=";
+    hash = "sha256-RVHhMKoQAqsddziK/vWGynSL9mxMuccNEGzoJTx8KAA=";
   };
 
+  nativeBuildInputs = [
+    setuptools
+  ];
+
   propagatedBuildInputs = [
     boto3
     orjson