tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
ha-mqtt-discoverable-cli: pin paho-mqtt to v1
Robert Schütz
1 year ago
c45a2f9d
430baeed
+12
-3
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
ha
ha-mqtt-discoverable-cli
package.nix
+12
-3
pkgs/by-name/ha/ha-mqtt-discoverable-cli/package.nix
···
4
4
python3,
5
5
}:
6
6
7
7
-
python3.pkgs.buildPythonApplication rec {
7
7
+
let
8
8
+
python = python3.override {
9
9
+
self = python;
10
10
+
packageOverrides = self: super: {
11
11
+
# https://github.com/unixorn/ha-mqtt-discoverable/pull/310
12
12
+
paho-mqtt = self.paho-mqtt_1;
13
13
+
};
14
14
+
};
15
15
+
in
16
16
+
python.pkgs.buildPythonApplication rec {
8
17
pname = "ha-mqtt-discoverable-cli";
9
18
version = "0.16.4.1";
10
19
pyproject = true;
···
18
27
19
28
pythonRelaxDeps = [ "ha-mqtt-discoverable" ];
20
29
21
21
-
build-system = with python3.pkgs; [ poetry-core ];
30
30
+
build-system = with python.pkgs; [ poetry-core ];
22
31
23
23
-
dependencies = with python3.pkgs; [ ha-mqtt-discoverable ];
32
32
+
dependencies = with python.pkgs; [ ha-mqtt-discoverable ];
24
33
25
34
# Project has no real tests
26
35
doCheck = false;