python312Packages.pynmea2: format with nixfmt

This commit is contained in:
Fabian Affolter
2024-05-18 20:37:29 +02:00
parent cff14ad572
commit ab8373bf62
@@ -1,10 +1,11 @@
{ lib
, buildPythonPackage
, fetchPypi
, fetchpatch
, pytestCheckHook
, setuptools
, pythonOlder
{
lib,
buildPythonPackage,
fetchPypi,
fetchpatch,
pytestCheckHook,
setuptools,
pythonOlder,
}:
buildPythonPackage rec {
@@ -28,17 +29,11 @@ buildPythonPackage rec {
})
];
build-system = [
setuptools
];
build-system = [ setuptools ];
nativeCheckInputs = [
pytestCheckHook
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [
"pynmea2"
];
pythonImportsCheck = [ "pynmea2" ];
meta = {
description = "Python library for the NMEA 0183 protcol";