python312Packages.xknxproject: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-07 11:34:35 +02:00
parent 92a0f7312d
commit b1b67f4c98
1 changed files with 13 additions and 18 deletions

View File

@ -1,12 +1,13 @@
{ lib
, buildPythonPackage
, cryptography
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
, pyzipper
, setuptools
, striprtf
{
lib,
buildPythonPackage,
cryptography,
fetchFromGitHub,
pytestCheckHook,
pythonOlder,
pyzipper,
setuptools,
striprtf,
}:
buildPythonPackage rec {
@ -23,9 +24,7 @@ buildPythonPackage rec {
hash = "sha256-/Zg4MYOvbsbJ0zyKuq+gX0PNbm8TyyBMziIaGCq6Lt8=";
};
build-system = [
setuptools
];
build-system = [ setuptools ];
dependencies = [
cryptography
@ -33,13 +32,9 @@ buildPythonPackage rec {
striprtf
];
nativeCheckInputs = [
pytestCheckHook
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [
"xknxproject"
];
pythonImportsCheck = [ "xknxproject" ];
meta = with lib; {
description = "Library to extract KNX projects and parses the underlying XML";