tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
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
reviewed
···
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 {
···
29
28
})
30
29
];
31
30
32
32
-
build-system = [
33
33
-
setuptools
34
34
-
];
31
31
+
build-system = [ setuptools ];
35
32
36
36
-
nativeCheckInputs = [
37
37
-
pytestCheckHook
38
38
-
];
33
33
+
nativeCheckInputs = [ pytestCheckHook ];
39
34
40
40
-
pythonImportsCheck = [
41
41
-
"pynmea2"
42
42
-
];
35
35
+
pythonImportsCheck = [ "pynmea2" ];
43
36
44
37
meta = {
45
38
description = "Python library for the NMEA 0183 protcol";