about summary refs log tree commit diff
path: root/pkgs/development/python-modules/confluent-kafka/default.nix
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2023-08-08 00:01:49 +0000
committerGitHub <noreply@github.com>2023-08-08 00:01:49 +0000
commit4507a6bd1f1471c5f4b20674d9df915ec386c4b1 (patch)
treead530efadc88c245294ff6e6ce044605687e2469 /pkgs/development/python-modules/confluent-kafka/default.nix
parentc1b4143943d28d99459793a64f8c2bd362764aec (diff)
parent9f27c36e18b5221650a6292c2deb1e893d72afce (diff)
downloadnixlib-4507a6bd1f1471c5f4b20674d9df915ec386c4b1.tar
nixlib-4507a6bd1f1471c5f4b20674d9df915ec386c4b1.tar.gz
nixlib-4507a6bd1f1471c5f4b20674d9df915ec386c4b1.tar.bz2
nixlib-4507a6bd1f1471c5f4b20674d9df915ec386c4b1.tar.lz
nixlib-4507a6bd1f1471c5f4b20674d9df915ec386c4b1.tar.xz
nixlib-4507a6bd1f1471c5f4b20674d9df915ec386c4b1.tar.zst
nixlib-4507a6bd1f1471c5f4b20674d9df915ec386c4b1.zip
Merge master into staging-next
Diffstat (limited to 'pkgs/development/python-modules/confluent-kafka/default.nix')
-rw-r--r--pkgs/development/python-modules/confluent-kafka/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/confluent-kafka/default.nix b/pkgs/development/python-modules/confluent-kafka/default.nix
index 03cdb826786c..33e3caf90cae 100644
--- a/pkgs/development/python-modules/confluent-kafka/default.nix
+++ b/pkgs/development/python-modules/confluent-kafka/default.nix
@@ -16,7 +16,7 @@
 
 buildPythonPackage rec {
   pname = "confluent-kafka";
-  version = "2.1.1";
+  version = "2.2.0";
   format = "setuptools";
 
   disabled = pythonOlder "3.7";
@@ -25,7 +25,7 @@ buildPythonPackage rec {
     owner = "confluentinc";
     repo = "confluent-kafka-python";
     rev = "refs/tags/v${version}";
-    hash = "sha256-xnbovQRvbhaYYXnssV0Jy+U9L6BUddIagbup2jdTugY=";
+    hash = "sha256-6CdalNFKkgF7JUqCGtt4nB1/H3u4SVqt9xCAg5DR3T0=";
   };
 
   buildInputs = [
@@ -62,6 +62,8 @@ buildPythonPackage rec {
 
   disabledTestPaths = [
     "tests/integration/"
+    "tests/test_Admin.py"
+    "tests/test_misc.py"
   ];
 
   meta = with lib; {