about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2019-12-10 10:16:13 +0000
committerGitHub <noreply@github.com>2019-12-10 10:16:13 +0000
commite32aa7f763cc67a2c145ed1e41e9089b361b4e05 (patch)
treecb2fd8f4c6d1f7df7469c838382094e65c68da46 /pkgs/development
parent9be0d6d4ae944e22796c1fca5380d8408e75cf68 (diff)
parent62cbdcbbafe7571e5c07569df86464a168d57d9b (diff)
downloadnixlib-e32aa7f763cc67a2c145ed1e41e9089b361b4e05.tar
nixlib-e32aa7f763cc67a2c145ed1e41e9089b361b4e05.tar.gz
nixlib-e32aa7f763cc67a2c145ed1e41e9089b361b4e05.tar.bz2
nixlib-e32aa7f763cc67a2c145ed1e41e9089b361b4e05.tar.lz
nixlib-e32aa7f763cc67a2c145ed1e41e9089b361b4e05.tar.xz
nixlib-e32aa7f763cc67a2c145ed1e41e9089b361b4e05.tar.zst
nixlib-e32aa7f763cc67a2c145ed1e41e9089b361b4e05.zip
Merge pull request #74776 from Mic92/hbmqtt
hbmqtt: fix tests
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/python-modules/hbmqtt/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/hbmqtt/default.nix b/pkgs/development/python-modules/hbmqtt/default.nix
index cd3264b78bb2..90c6444da4ce 100644
--- a/pkgs/development/python-modules/hbmqtt/default.nix
+++ b/pkgs/development/python-modules/hbmqtt/default.nix
@@ -14,6 +14,11 @@ buildPythonPackage rec {
 
   propagatedBuildInputs = [ transitions websockets passlib docopt pyyaml ];
 
+  postPatch = ''
+    # test tries to bind same port multiple times and fails
+    rm tests/test_client.py
+  '';
+
   checkInputs = [ nose ];
 
   checkPhase = ''