python312Packages.peco: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-05-10 12:37:10 +02:00
parent ad8572d0d9
commit 312c697e2b

View file

@ -1,10 +1,11 @@
{ lib {
, aiohttp lib,
, buildPythonPackage aiohttp,
, fetchPypi buildPythonPackage,
, pydantic fetchPypi,
, pythonOlder pydantic,
, setuptools pythonOlder,
setuptools,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -19,9 +20,7 @@ buildPythonPackage rec {
hash = "sha256-a3MPqtbDftbLGtpJ66CFVC5wJFa9L3dqOKPfBZCaHpM="; hash = "sha256-a3MPqtbDftbLGtpJ66CFVC5wJFa9L3dqOKPfBZCaHpM=";
}; };
build-system = [ build-system = [ setuptools ];
setuptools
];
dependencies = [ dependencies = [
aiohttp aiohttp
@ -31,9 +30,7 @@ buildPythonPackage rec {
# Module has no tests # Module has no tests
doCheck = false; doCheck = false;
pythonImportsCheck = [ pythonImportsCheck = [ "peco" ];
"peco"
];
meta = with lib; { meta = with lib; {
description = "Library for interacting with the PECO outage map"; description = "Library for interacting with the PECO outage map";