Skip to content

Commit

Permalink
pythonPackages.hbmqtt: disable on Python 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
dotlambda committed Jan 22, 2021
1 parent 3677e26 commit 487ade9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pkgs/development/python-modules/hbmqtt/default.nix
Original file line number Diff line number Diff line change
@@ -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;
Expand Down

0 comments on commit 487ade9

Please sign in to comment.