python312Packages.adext: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-05-12 09:36:11 +02:00
parent 47612dcc40
commit 22312bf8f0

View File

@ -1,9 +1,10 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools-scm
, alarmdecoder
, pytestCheckHook
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools-scm,
alarmdecoder,
pytestCheckHook,
}:
buildPythonPackage rec {
@ -18,17 +19,11 @@ buildPythonPackage rec {
hash = "sha256-y8BvcSc3vD0FEWiyzW2Oh6PBS2Itjs2sz+9Dzh5yqSg=";
};
build-system = [
setuptools-scm
];
build-system = [ setuptools-scm ];
dependencies = [
alarmdecoder
];
dependencies = [ alarmdecoder ];
nativeCheckInputs = [
pytestCheckHook
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "adext" ];