nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python312Packages.pynmea2: format with nixfmt

+11 -16
+11 -16
pkgs/development/python-modules/pynmea2/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchPypi 4 - , fetchpatch 5 - , pytestCheckHook 6 - , setuptools 7 - , pythonOlder 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchPypi, 5 + fetchpatch, 6 + pytestCheckHook, 7 + setuptools, 8 + pythonOlder, 8 9 }: 9 10 10 11 buildPythonPackage rec { ··· 29 28 }) 30 29 ]; 31 30 32 - build-system = [ 33 - setuptools 34 - ]; 31 + build-system = [ setuptools ]; 35 32 36 - nativeCheckInputs = [ 37 - pytestCheckHook 38 - ]; 33 + nativeCheckInputs = [ pytestCheckHook ]; 39 34 40 - pythonImportsCheck = [ 41 - "pynmea2" 42 - ]; 35 + pythonImportsCheck = [ "pynmea2" ]; 43 36 44 37 meta = { 45 38 description = "Python library for the NMEA 0183 protcol";