tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python312Packages.bthome-ble: format with nixfmt
Fabian Affolter
2 years ago
0d94a882
7b2440ca
+15
-20
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
bthome-ble
default.nix
+15
-20
pkgs/development/python-modules/bthome-ble/default.nix
···
1
1
-
{ lib
2
2
-
, bluetooth-data-tools
3
3
-
, bluetooth-sensor-state-data
4
4
-
, buildPythonPackage
5
5
-
, cryptography
6
6
-
, fetchFromGitHub
7
7
-
, poetry-core
8
8
-
, pytestCheckHook
9
9
-
, pythonOlder
10
10
-
, pytz
11
11
-
, sensor-state-data
1
1
+
{
2
2
+
lib,
3
3
+
bluetooth-data-tools,
4
4
+
bluetooth-sensor-state-data,
5
5
+
buildPythonPackage,
6
6
+
cryptography,
7
7
+
fetchFromGitHub,
8
8
+
poetry-core,
9
9
+
pytestCheckHook,
10
10
+
pythonOlder,
11
11
+
pytz,
12
12
+
sensor-state-data,
12
13
}:
13
14
14
15
buildPythonPackage rec {
···
30
31
--replace-fail " --cov=bthome_ble --cov-report=term-missing:skip-covered" ""
31
32
'';
32
33
33
33
-
build-system = [
34
34
-
poetry-core
35
35
-
];
34
34
+
build-system = [ poetry-core ];
36
35
37
36
dependencies = [
38
37
bluetooth-data-tools
···
42
41
pytz
43
42
];
44
43
45
45
-
nativeCheckInputs = [
46
46
-
pytestCheckHook
47
47
-
];
44
44
+
nativeCheckInputs = [ pytestCheckHook ];
48
45
49
49
-
pythonImportsCheck = [
50
50
-
"bthome_ble"
51
51
-
];
46
46
+
pythonImportsCheck = [ "bthome_ble" ];
52
47
53
48
meta = with lib; {
54
49
description = "Library for BThome BLE devices";