about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2022-09-25 16:22:55 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2022-09-25 16:22:55 +0200
commit2da151f56acae6743d85416ea7bc9a61581dc7eb (patch)
tree203e301c4580e51f0a041b0f22885d6cd1981640
parent6d032933823d6bb88b15b6ba975fa627ec96ae0d (diff)
downloadnixlib-2da151f56acae6743d85416ea7bc9a61581dc7eb.tar
nixlib-2da151f56acae6743d85416ea7bc9a61581dc7eb.tar.gz
nixlib-2da151f56acae6743d85416ea7bc9a61581dc7eb.tar.bz2
nixlib-2da151f56acae6743d85416ea7bc9a61581dc7eb.tar.lz
nixlib-2da151f56acae6743d85416ea7bc9a61581dc7eb.tar.xz
nixlib-2da151f56acae6743d85416ea7bc9a61581dc7eb.tar.zst
nixlib-2da151f56acae6743d85416ea7bc9a61581dc7eb.zip
python310Packages.nats-py: exclude tests for darwin
-rw-r--r--pkgs/development/python-modules/nats-py/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/nats-py/default.nix b/pkgs/development/python-modules/nats-py/default.nix
index 6521d6d0719f..069cda129d1a 100644
--- a/pkgs/development/python-modules/nats-py/default.nix
+++ b/pkgs/development/python-modules/nats-py/default.nix
@@ -1,4 +1,5 @@
 { lib
+, stdenv
 , buildPythonPackage
 , ed25519
 , fetchFromGitHub
@@ -42,6 +43,9 @@ buildPythonPackage rec {
     "test_pull_subscribe_limits"
     "test_fetch_n"
     "test_subscribe_no_echo"
+  ] ++ lib.optionals stdenv.isDarwin [
+    "test_subscribe_iterate_next_msg"
+    "test_buf_size_force_flush_timeout"
   ];
 
   pythonImportsCheck = [