tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python312Packages.pyotgw: format with nixfmt
Fabian Affolter
2 years ago
2289c495
53e88a76
+13
-18
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
pyotgw
default.nix
+13
-18
pkgs/development/python-modules/pyotgw/default.nix
reviewed
···
1
1
-
{ lib
2
2
-
, buildPythonPackage
3
3
-
, fetchFromGitHub
4
4
-
, pyserial-asyncio
5
5
-
, pyserial-asyncio-fast
6
6
-
, pytest-asyncio
7
7
-
, pytestCheckHook
8
8
-
, pythonOlder
9
9
-
, setuptools
1
1
+
{
2
2
+
lib,
3
3
+
buildPythonPackage,
4
4
+
fetchFromGitHub,
5
5
+
pyserial-asyncio,
6
6
+
pyserial-asyncio-fast,
7
7
+
pytest-asyncio,
8
8
+
pytestCheckHook,
9
9
+
pythonOlder,
10
10
+
setuptools,
10
11
}:
11
12
12
13
buildPythonPackage rec {
···
23
24
hash = "sha256-SowM+glni1PGkM87JT9+QWTD4Tu9XmsfXg99GZzSCJM=";
24
25
};
25
26
26
26
-
build-system = [
27
27
-
setuptools
28
28
-
];
27
27
+
build-system = [ setuptools ];
29
28
30
30
-
dependencies = [
31
31
-
pyserial-asyncio-fast
32
32
-
];
29
29
+
dependencies = [ pyserial-asyncio-fast ];
33
30
34
31
nativeCheckInputs = [
35
32
pytest-asyncio
36
33
pytestCheckHook
37
34
];
38
35
39
39
-
pythonImportsCheck = [
40
40
-
"pyotgw"
41
41
-
];
36
36
+
pythonImportsCheck = [ "pyotgw" ];
42
37
43
38
meta = with lib; {
44
39
description = "Python module to interact the OpenTherm Gateway";