Merge pull request #34322 from dotlambda/hbmqtt

pythonPackages.hbmqtt: init at 0.9.1
This commit is contained in:
Andreas Rammhold 2018-01-29 11:51:06 +00:00 committed by GitHub
commit bc59ebd30e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 64 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

@ -0,0 +1,31 @@
{ stdenv, buildPythonPackage, fetchPypi
, six, nose, mock, dill, pycodestyle }:
buildPythonPackage rec {
pname = "transitions";
version = "0.6.4";
src = fetchPypi {
inherit pname version;
sha256 = "1ikxsjg7vil0yhiwhiimnjzcb1ig6g6g79sdhs9v8rnrszk1mi2n";
};
postPatch = ''
substituteInPlace setup.py --replace "dill<0.2.7" dill
'';
propagatedBuildInputs = [ six ];
checkInputs = [ nose mock dill pycodestyle ];
checkPhase = ''
nosetests
'';
meta = with stdenv.lib; {
homepage = https://github.com/pytransitions/transitions;
description = "A lightweight, object-oriented finite state machine implementation in Python";
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";
@ -17495,6 +17497,8 @@ in {
traitlets = callPackage ../development/python-modules/traitlets { };
transitions = callPackage ../development/python-modules/transitions { };
python_mimeparse = buildPythonPackage rec {
name = "python-mimeparse-${version}";
version = "0.1.4";