lol

python312Packages.aiodiscover: format with nixfmt

+17 -20
+17 -20
pkgs/development/python-modules/aiodiscover/default.nix
··· 1 - { lib 2 - , aiodns 3 - , async-timeout 4 - , buildPythonPackage 5 - , cached-ipaddress 6 - , dnspython 7 - , fetchFromGitHub 8 - , ifaddr 9 - , netifaces 10 - , pyroute2 11 - , pytest-asyncio 12 - , pytestCheckHook 13 - , pythonOlder 14 - , setuptools 1 + { 2 + lib, 3 + aiodns, 4 + async-timeout, 5 + buildPythonPackage, 6 + cached-ipaddress, 7 + dnspython, 8 + fetchFromGitHub, 9 + ifaddr, 10 + netifaces, 11 + pyroute2, 12 + pytest-asyncio, 13 + pytestCheckHook, 14 + pythonOlder, 15 + setuptools, 15 16 }: 16 17 17 18 buildPythonPackage rec { ··· 28 29 hash = "sha256-+DcROb6jR0veD3oSKgyJHUi1VtCT54yBKvVqir5y+R4="; 29 30 }; 30 31 31 - nativeBuildInputs = [ 32 - setuptools 33 - ]; 32 + nativeBuildInputs = [ setuptools ]; 34 33 35 34 propagatedBuildInputs = [ 36 35 async-timeout ··· 52 51 "test_async_discover_hosts" 53 52 ]; 54 53 55 - pythonImportsCheck = [ 56 - "aiodiscover" 57 - ]; 54 + pythonImportsCheck = [ "aiodiscover" ]; 58 55 59 56 meta = with lib; { 60 57 description = "Python module to discover hosts via ARP and PTR lookup";