tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python312Packages.pynmea2: format with nixfmt
Fabian Affolter
2 years ago
ab8373bf
cff14ad5
+11
-16
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
pynmea2
default.nix
+11
-16
pkgs/development/python-modules/pynmea2/default.nix
···
1
1
-
{ lib
2
2
-
, buildPythonPackage
3
3
-
, fetchPypi
4
4
-
, fetchpatch
5
5
-
, pytestCheckHook
6
6
-
, setuptools
7
7
-
, pythonOlder
1
1
+
{
2
2
+
lib,
3
3
+
buildPythonPackage,
4
4
+
fetchPypi,
5
5
+
fetchpatch,
6
6
+
pytestCheckHook,
7
7
+
setuptools,
8
8
+
pythonOlder,
8
9
}:
9
10
10
11
buildPythonPackage rec {
···
28
29
})
29
30
];
30
31
31
31
-
build-system = [
32
32
-
setuptools
33
33
-
];
32
32
+
build-system = [ setuptools ];
34
33
35
35
-
nativeCheckInputs = [
36
36
-
pytestCheckHook
37
37
-
];
34
34
+
nativeCheckInputs = [ pytestCheckHook ];
38
35
39
39
-
pythonImportsCheck = [
40
40
-
"pynmea2"
41
41
-
];
36
36
+
pythonImportsCheck = [ "pynmea2" ];
42
37
43
38
meta = {
44
39
description = "Python library for the NMEA 0183 protcol";