python311Packages.aiopegelonline: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-24 08:27:36 +02:00
parent bdf3410e0e
commit 2b531277a4

View File

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