about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@thalheim.io>2020-11-07 06:56:53 +0100
committerJonathan Ringer <jonringer@users.noreply.github.com>2020-11-07 10:41:36 -0800
commitba3b59939f6d62e4bb033001aea6b0afeefc8bfb (patch)
tree849ec1aa4c63df6b9930148bec58a385992e2710
parentd07bef461c625e26f3c6efdd4866ad8db203756b (diff)
downloadnixlib-ba3b59939f6d62e4bb033001aea6b0afeefc8bfb.tar
nixlib-ba3b59939f6d62e4bb033001aea6b0afeefc8bfb.tar.gz
nixlib-ba3b59939f6d62e4bb033001aea6b0afeefc8bfb.tar.bz2
nixlib-ba3b59939f6d62e4bb033001aea6b0afeefc8bfb.tar.lz
nixlib-ba3b59939f6d62e4bb033001aea6b0afeefc8bfb.tar.xz
nixlib-ba3b59939f6d62e4bb033001aea6b0afeefc8bfb.tar.zst
nixlib-ba3b59939f6d62e4bb033001aea6b0afeefc8bfb.zip
python3.pkgs.hbmqtt: needs setuptools at runtime
-rw-r--r--pkgs/development/python-modules/hbmqtt/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/hbmqtt/default.nix b/pkgs/development/python-modules/hbmqtt/default.nix
index b00e3a88d3e9..76ae5718024a 100644
--- a/pkgs/development/python-modules/hbmqtt/default.nix
+++ b/pkgs/development/python-modules/hbmqtt/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, buildPythonPackage, fetchPypi, isPy3k
+{ stdenv, buildPythonPackage, fetchPypi, isPy3k, setuptools
 , transitions, websockets, passlib, docopt, pyyaml, nose }:
 
 buildPythonPackage rec {
@@ -12,7 +12,9 @@ buildPythonPackage rec {
     sha256 = "1n9c8yj11npiq9qxivwmfhib1qkjpcyw42a7q0w641bdrz3x6r37";
   };
 
-  propagatedBuildInputs = [ transitions websockets passlib docopt pyyaml ];
+  propagatedBuildInputs = [
+    transitions websockets passlib docopt pyyaml setuptools
+  ];
 
   postPatch = ''
     # test tries to bind same port multiple times and fails