about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2022-08-21 13:08:21 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2022-09-25 16:21:08 +0200
commit6d032933823d6bb88b15b6ba975fa627ec96ae0d (patch)
treebad34285935fd661acb27b7e6d70370ae7741ebe
parent35e8308d98eca72b1fb4e806f847ef89d5a192ef (diff)
downloadnixlib-6d032933823d6bb88b15b6ba975fa627ec96ae0d.tar
nixlib-6d032933823d6bb88b15b6ba975fa627ec96ae0d.tar.gz
nixlib-6d032933823d6bb88b15b6ba975fa627ec96ae0d.tar.bz2
nixlib-6d032933823d6bb88b15b6ba975fa627ec96ae0d.tar.lz
nixlib-6d032933823d6bb88b15b6ba975fa627ec96ae0d.tar.xz
nixlib-6d032933823d6bb88b15b6ba975fa627ec96ae0d.tar.zst
nixlib-6d032933823d6bb88b15b6ba975fa627ec96ae0d.zip
python310Packages.nats-py: 2.1.6 -> 2.1.7
- enable tests which were fixed
-rw-r--r--pkgs/development/python-modules/nats-py/default.nix21
1 files changed, 5 insertions, 16 deletions
diff --git a/pkgs/development/python-modules/nats-py/default.nix b/pkgs/development/python-modules/nats-py/default.nix
index 10650d319053..6521d6d0719f 100644
--- a/pkgs/development/python-modules/nats-py/default.nix
+++ b/pkgs/development/python-modules/nats-py/default.nix
@@ -10,7 +10,7 @@
 
 buildPythonPackage rec {
   pname = "nats-py";
-  version = "2.1.6";
+  version = "2.1.7";
   format = "setuptools";
 
   disabled = pythonOlder "3.7";
@@ -19,7 +19,7 @@ buildPythonPackage rec {
     owner = "nats-io";
     repo = "nats.py";
     rev = "refs/tags/v${version}";
-    hash = "sha256-ILYZofQf9xnD294GL8rB07bg/Su7TD3KzpDTxrqERak=";
+    hash = "sha256-K2ugTwfeYrdBnXFV9SHNQP+fNvUmc1yuy53gpGmmvS0=";
   };
 
   propagatedBuildInputs = [
@@ -38,21 +38,10 @@ buildPythonPackage rec {
   '';
 
   disabledTests = [
-    # RuntimeError: Event loop is closed
-    "test_subscribe_no_echo"
-    "test_publish"
-    "test_publish_verbose"
-    "test_fetch_max_waiting_fetch_one"
+    # AssertionError: assert 5 == 0
+    "test_pull_subscribe_limits"
     "test_fetch_n"
-    "test_consumer_management"
-    "test_ephemeral_subscribe"
-    "test_queue_subscribe_deliver_group"
-    "test_subscribe_push_bound"
-    "test_double_acking_subscribe"
-    "test_flow_control"
-    "test_ordered_consumer"
-    "test_ordered_consumer_single_loss"
-    "test_kv_simple"
+    "test_subscribe_no_echo"
   ];
 
   pythonImportsCheck = [