lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python3121Packages.asyncwhois: format with nixfmt

+14 -17
+14 -17
pkgs/development/python-modules/asyncwhois/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchFromGitHub 4 - , pytest-asyncio 5 - , pytest-mock 6 - , pytestCheckHook 7 - , python-socks 8 - , pythonOlder 9 - , setuptools 10 - , tldextract 11 - , whodap 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchFromGitHub, 5 + pytest-asyncio, 6 + pytest-mock, 7 + pytestCheckHook, 8 + python-socks, 9 + pythonOlder, 10 + setuptools, 11 + tldextract, 12 + whodap, 12 13 }: 13 14 14 15 buildPythonPackage rec { ··· 30 31 --replace-fail "python-socks[asyncio]" "python-socks" 31 32 ''; 32 33 33 - build-system = [ 34 - setuptools 35 - ]; 34 + build-system = [ setuptools ]; 36 35 37 36 dependencies = [ 38 37 python-socks ··· 63 62 "test__get_top_level_domain" 64 63 ]; 65 64 66 - pythonImportsCheck = [ 67 - "asyncwhois" 68 - ]; 65 + pythonImportsCheck = [ "asyncwhois" ]; 69 66 70 67 meta = with lib; { 71 68 description = "Python module for retrieving WHOIS information";