lol

python311Packages.aiopegelonline: format with nixfmt

+13 -18
+13 -18
pkgs/development/python-modules/aiopegelonline/default.nix
··· 1 - { lib 2 - , aiohttp 3 - , aioresponses 4 - , buildPythonPackage 5 - , fetchFromGitHub 6 - , pytest-asyncio 7 - , pytestCheckHook 8 - , pythonOlder 9 - , setuptools 1 + { 2 + lib, 3 + aiohttp, 4 + aioresponses, 5 + buildPythonPackage, 6 + fetchFromGitHub, 7 + pytest-asyncio, 8 + pytestCheckHook, 9 + pythonOlder, 10 + setuptools, 10 11 }: 11 12 12 13 buildPythonPackage rec { ··· 23 24 hash = "sha256-nKuqAzT1O5n9X/fEUm+M2RdB4u7moUGQzFA7knSEpBs="; 24 25 }; 25 26 26 - build-system = [ 27 - setuptools 28 - ]; 27 + build-system = [ setuptools ]; 29 28 30 - dependencies = [ 31 - aiohttp 32 - ]; 29 + dependencies = [ aiohttp ]; 33 30 34 31 nativeCheckInputs = [ 35 32 aioresponses ··· 37 34 pytestCheckHook 38 35 ]; 39 36 40 - pythonImportsCheck = [ 41 - "aiopegelonline" 42 - ]; 37 + pythonImportsCheck = [ "aiopegelonline" ]; 43 38 44 39 meta = with lib; { 45 40 description = "Library to retrieve data from PEGELONLINE";