nixpkgs/pkgs/development/python-modules/hbmqtt/default.nix

35 lines
836 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi, isPy3k
2018-01-27 08:45:34 +00:00
, transitions, websockets, passlib, docopt, pyyaml, nose }:
buildPythonPackage rec {
pname = "hbmqtt";
version = "0.9.6";
2018-01-27 08:45:34 +00:00
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "1n9c8yj11npiq9qxivwmfhib1qkjpcyw42a7q0w641bdrz3x6r37";
2018-01-27 08:45:34 +00:00
};
propagatedBuildInputs = [ transitions websockets passlib docopt pyyaml ];
2019-12-01 10:34:59 +00:00
postPatch = ''
# test tries to bind same port multiple times and fails
rm tests/test_client.py
'';
2018-01-27 08:45:34 +00:00
checkInputs = [ nose ];
checkPhase = ''
nosetests -e test_connect_tcp
'';
meta = with stdenv.lib; {
homepage = "https://github.com/beerfactory/hbmqtt";
2018-01-27 08:45:34 +00:00
description = "MQTT client/broker using Python asynchronous I/O";
license = licenses.mit;
maintainers = with maintainers; [ dotlambda ];
};
}