pythonPackages.hbmqtt: init at 0.9.1

This commit is contained in:
Robert Schütz 2018-01-27 09:45:34 +01:00
parent 2474e6e212
commit f2a5b2fd65
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,29 @@
{ stdenv, buildPythonPackage, fetchPypi, isPy3k
, transitions, websockets, passlib, docopt, pyyaml, nose }:
buildPythonPackage rec {
pname = "hbmqtt";
version = "0.9.1";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "04lqqcy84f9gcwqhrlvzp689r3mkdd8ipsnfzw8gryfny4lh8wrx";
};
propagatedBuildInputs = [ transitions websockets passlib docopt pyyaml ];
checkInputs = [ nose ];
checkPhase = ''
nosetests -e test_connect_tcp
'';
meta = with stdenv.lib; {
homepage = https://github.com/beerfactory/hbmqtt;
description = "MQTT client/broker using Python asynchronous I/O";
license = licenses.mit;
maintainers = with maintainers; [ dotlambda ];
};
}

View File

@ -5090,6 +5090,8 @@ in {
then callPackage ../development/python-modules/gurobipy/linux.nix {}
else throw "gurobipy not yet supported on ${stdenv.system}";
hbmqtt = callPackage ../development/python-modules/hbmqtt { };
helper = buildPythonPackage rec {
pname = "helper";
version = "2.4.1";