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
-
{ lib
2
-
, buildPythonPackage
3
-
, fetchPypi
4
-
, fetchpatch
5
-
, pytestCheckHook
6
-
, setuptools
7
-
, pythonOlder
0
8
}:
9
10
buildPythonPackage rec {
···
28
})
29
];
30
31
-
build-system = [
32
-
setuptools
33
-
];
34
35
-
nativeCheckInputs = [
36
-
pytestCheckHook
37
-
];
38
39
-
pythonImportsCheck = [
40
-
"pynmea2"
41
-
];
42
43
meta = {
44
description = "Python library for the NMEA 0183 protcol";
···
1
+
{
2
+
lib,
3
+
buildPythonPackage,
4
+
fetchPypi,
5
+
fetchpatch,
6
+
pytestCheckHook,
7
+
setuptools,
8
+
pythonOlder,
9
}:
10
11
buildPythonPackage rec {
···
29
})
30
];
31
32
+
build-system = [ setuptools ];
0
0
33
34
+
nativeCheckInputs = [ pytestCheckHook ];
0
0
35
36
+
pythonImportsCheck = [ "pynmea2" ];
0
0
37
38
meta = {
39
description = "Python library for the NMEA 0183 protcol";