pythonPackages.hbmqtt: init at 0.9.1
This commit is contained in:
parent
2474e6e212
commit
f2a5b2fd65
29
pkgs/development/python-modules/hbmqtt/default.nix
Normal file
29
pkgs/development/python-modules/hbmqtt/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -5090,6 +5090,8 @@ in {
|
|||||||
then callPackage ../development/python-modules/gurobipy/linux.nix {}
|
then callPackage ../development/python-modules/gurobipy/linux.nix {}
|
||||||
else throw "gurobipy not yet supported on ${stdenv.system}";
|
else throw "gurobipy not yet supported on ${stdenv.system}";
|
||||||
|
|
||||||
|
hbmqtt = callPackage ../development/python-modules/hbmqtt { };
|
||||||
|
|
||||||
helper = buildPythonPackage rec {
|
helper = buildPythonPackage rec {
|
||||||
pname = "helper";
|
pname = "helper";
|
||||||
version = "2.4.1";
|
version = "2.4.1";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user