tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python3Packages.python-openzwave-mqtt: init at 1.4.0
Martin Weinelt
5 years ago
8557a6e0
91f78faa
+35
2 changed files
expand all
collapse all
unified
split
pkgs
development
python-modules
python-openzwave-mqtt
default.nix
top-level
python-packages.nix
+33
pkgs/development/python-modules/python-openzwave-mqtt/default.nix
reviewed
···
1
1
+
{ lib
2
2
+
, buildPythonPackage
3
3
+
, fetchFromGitHub
4
4
+
, asyncio-mqtt
5
5
+
, pytestCheckHook
6
6
+
}:
7
7
+
8
8
+
buildPythonPackage rec {
9
9
+
pname = "python-openzwave-mqtt";
10
10
+
version = "1.4.0";
11
11
+
12
12
+
src = fetchFromGitHub {
13
13
+
owner = "cgarwood";
14
14
+
repo = pname;
15
15
+
rev = "v${version}";
16
16
+
sha256 = "0zqx00dacs59y4gjr4swrn46c7hrp8a1167bcl270333284m8mqm";
17
17
+
};
18
18
+
19
19
+
propagatedBuildInputs = [
20
20
+
asyncio-mqtt
21
21
+
];
22
22
+
23
23
+
checkInputs = [
24
24
+
pytestCheckHook
25
25
+
];
26
26
+
27
27
+
meta = with lib; {
28
28
+
description = "Python wrapper for OpenZWave's MQTT daemon";
29
29
+
homepage = "https://github.com/cgarwood/python-openzwave-mqtt";
30
30
+
license = licenses.asl20;
31
31
+
maintainers = with maintainers; [ hexa ];
32
32
+
};
33
33
+
}
+2
pkgs/top-level/python-packages.nix
reviewed
···
4898
4898
4899
4899
python-openems = callPackage ../development/python-modules/python-openems { };
4900
4900
4901
4901
+
python-openzwave-mqtt = callPackage ../development/python-modules/python-openzwave-mqtt { };
4902
4902
+
4901
4903
python-tado = callPackage ../development/python-modules/python-tado { };
4902
4904
4903
4905
pkutils = callPackage ../development/python-modules/pkutils { };