python311Packages.aiopegelonline: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-24 08:27:36 +02:00
parent bdf3410e0e
commit 2b531277a4
1 changed files with 13 additions and 18 deletions

View File

@ -1,12 +1,13 @@
{ lib
, aiohttp
, aioresponses
, buildPythonPackage
, fetchFromGitHub
, pytest-asyncio
, pytestCheckHook
, pythonOlder
, setuptools
{
lib,
aiohttp,
aioresponses,
buildPythonPackage,
fetchFromGitHub,
pytest-asyncio,
pytestCheckHook,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
@ -23,13 +24,9 @@ buildPythonPackage rec {
hash = "sha256-nKuqAzT1O5n9X/fEUm+M2RdB4u7moUGQzFA7knSEpBs=";
};
build-system = [
setuptools
];
build-system = [ setuptools ];
dependencies = [
aiohttp
];
dependencies = [ aiohttp ];
nativeCheckInputs = [
aioresponses
@ -37,9 +34,7 @@ buildPythonPackage rec {
pytestCheckHook
];
pythonImportsCheck = [
"aiopegelonline"
];
pythonImportsCheck = [ "aiopegelonline" ];
meta = with lib; {
description = "Library to retrieve data from PEGELONLINE";