tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
python3Packages.pyinsteon: 1.5.0 -> 1.5.1
Martin Weinelt
2 years ago
35d45751
d89e829c
+2
-12
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
pyinsteon
default.nix
+2
-12
pkgs/development/python-modules/pyinsteon/default.nix
···
4
4
, async-generator
5
5
, buildPythonPackage
6
6
, fetchFromGitHub
7
7
-
, fetchpatch
8
7
, pypubsub
9
8
, pyserial
10
9
, pyserial-asyncio
···
17
16
18
17
buildPythonPackage rec {
19
18
pname = "pyinsteon";
20
20
-
version = "1.5.0";
19
19
+
version = "1.5.1";
21
20
format = "pyproject";
22
21
23
22
disabled = pythonOlder "3.8";
···
26
25
owner = pname;
27
26
repo = pname;
28
27
rev = "refs/tags/${version}";
29
29
-
hash = "sha256-REm0E7+otqDypVslB5heHEaWA+q3Nh1O96gxFeCC3As=";
28
28
+
hash = "sha256-H2rgPA0GW6neFIHZVZxmAP50HJUPCWDZcJ90QxLGXJ8=";
30
29
};
31
31
-
32
32
-
patches = [
33
33
-
# https://github.com/pyinsteon/pyinsteon/pull/361
34
34
-
(fetchpatch {
35
35
-
name = "relax-setuptools-dependency.patch";
36
36
-
url = "https://github.com/pyinsteon/pyinsteon/commit/676bc5fff11b73a4c3fd189a6ac6d3de9ca21ae0.patch";
37
37
-
hash = "sha256-kTu1+IwDrcdqelyK/vfhxw8MQBis5I1jag7YTytKQhs=";
38
38
-
})
39
39
-
];
40
30
41
31
nativeBuildInputs = [
42
32
setuptools