about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorRobert Schütz <dev@schuetz-co.de>2021-01-22 19:56:12 +0100
committerJonathan Ringer <jonringer@users.noreply.github.com>2021-01-22 14:11:34 -0800
commitc173f673edff5f3825f23e75ad75b7a2d1742ba9 (patch)
tree8bfd6a1f9b17d78f67a2d2d5870d75a1df3bebd5 /pkgs
parent8c1ce4ec70905e26c4961715d401994d4d71d2ae (diff)
downloadnixlib-c173f673edff5f3825f23e75ad75b7a2d1742ba9.tar
nixlib-c173f673edff5f3825f23e75ad75b7a2d1742ba9.tar.gz
nixlib-c173f673edff5f3825f23e75ad75b7a2d1742ba9.tar.bz2
nixlib-c173f673edff5f3825f23e75ad75b7a2d1742ba9.tar.lz
nixlib-c173f673edff5f3825f23e75ad75b7a2d1742ba9.tar.xz
nixlib-c173f673edff5f3825f23e75ad75b7a2d1742ba9.tar.zst
nixlib-c173f673edff5f3825f23e75ad75b7a2d1742ba9.zip
pythonPackages.hbmqtt: disable on Python 3.9
See https://github.com/beerfactory/hbmqtt/issues/223.
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/hbmqtt/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/hbmqtt/default.nix b/pkgs/development/python-modules/hbmqtt/default.nix
index 053e955ad806..003805f939c6 100644
--- a/pkgs/development/python-modules/hbmqtt/default.nix
+++ b/pkgs/development/python-modules/hbmqtt/default.nix
@@ -1,11 +1,12 @@
-{ lib, stdenv, buildPythonPackage, fetchPypi, isPy3k, setuptools
+{ lib, stdenv, buildPythonPackage, fetchPypi, isPy3k, pythonAtLeast, setuptools
 , transitions, websockets, passlib, docopt, pyyaml, nose }:
 
 buildPythonPackage rec {
   pname = "hbmqtt";
   version = "0.9.6";
 
-  disabled = !isPy3k;
+  # https://github.com/beerfactory/hbmqtt/issues/223
+  disabled = !isPy3k || pythonAtLeast "3.9";
 
   src = fetchPypi {
     inherit pname version;