python312Packages.aioeagle: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-23 09:16:32 +02:00
parent 722c517b1d
commit 738e666505

View File

@ -1,10 +1,11 @@
{ lib {
, aiohttp lib,
, buildPythonPackage aiohttp,
, fetchFromGitHub buildPythonPackage,
, pythonOlder fetchFromGitHub,
, setuptools pythonOlder,
, xmltodict setuptools,
xmltodict,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -21,9 +22,7 @@ buildPythonPackage rec {
hash = "sha256-ZO5uODCGebggItsEVKtis0uwU67dmSxc7DHzzkBZ9oQ="; hash = "sha256-ZO5uODCGebggItsEVKtis0uwU67dmSxc7DHzzkBZ9oQ=";
}; };
build-system = [ build-system = [ setuptools ];
setuptools
];
dependencies = [ dependencies = [
aiohttp aiohttp
@ -33,9 +32,7 @@ buildPythonPackage rec {
# Project has no tests # Project has no tests
doCheck = false; doCheck = false;
pythonImportsCheck = [ pythonImportsCheck = [ "aioeagle" ];
"aioeagle"
];
meta = with lib; { meta = with lib; {
description = "Python library to control EAGLE-200"; description = "Python library to control EAGLE-200";