Merge pull request #34322 from dotlambda/hbmqtt
pythonPackages.hbmqtt: init at 0.9.1
This commit is contained in:
commit
bc59ebd30e
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 ];
|
||||||
|
};
|
||||||
|
}
|
31
pkgs/development/python-modules/transitions/default.nix
Normal file
31
pkgs/development/python-modules/transitions/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -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";
|
||||||
@ -17495,6 +17497,8 @@ in {
|
|||||||
|
|
||||||
traitlets = callPackage ../development/python-modules/traitlets { };
|
traitlets = callPackage ../development/python-modules/traitlets { };
|
||||||
|
|
||||||
|
transitions = callPackage ../development/python-modules/transitions { };
|
||||||
|
|
||||||
python_mimeparse = buildPythonPackage rec {
|
python_mimeparse = buildPythonPackage rec {
|
||||||
name = "python-mimeparse-${version}";
|
name = "python-mimeparse-${version}";
|
||||||
version = "0.1.4";
|
version = "0.1.4";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user