Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

python312Packages.tabcmd: use nixfmt

+27 -32
+27 -32
pkgs/development/python-modules/tabcmd/default.nix
··· 1 - { lib 2 - , appdirs 3 - , argparse 4 - , buildPythonPackage 5 - , doit 6 - , fetchPypi 7 - , ftfy 8 - , mock 9 - , pyinstaller-versionfile 10 - , pytest-order 11 - , pytestCheckHook 12 - , python3 13 - , pythonOlder 14 - , pythonRelaxDepsHook 15 - , requests 16 - , setuptools 17 - , setuptools-scm 18 - , tableauserverclient 19 - , types-appdirs 20 - , types-mock 21 - , types-requests 22 - , types-setuptools 23 - , urllib3 1 + { 2 + lib, 3 + appdirs, 4 + argparse, 5 + buildPythonPackage, 6 + doit, 7 + fetchPypi, 8 + ftfy, 9 + mock, 10 + pyinstaller-versionfile, 11 + pytest-order, 12 + pytestCheckHook, 13 + python3, 14 + pythonOlder, 15 + pythonRelaxDepsHook, 16 + requests, 17 + setuptools, 18 + setuptools-scm, 19 + tableauserverclient, 20 + types-appdirs, 21 + types-mock, 22 + types-requests, 23 + types-setuptools, 24 + urllib3, 24 25 }: 25 26 26 27 buildPythonPackage rec { ··· 46 47 "urllib3" 47 48 ]; 48 49 49 - nativeBuildInputs = [ 50 - pythonRelaxDepsHook 51 - ]; 50 + nativeBuildInputs = [ pythonRelaxDepsHook ]; 52 51 53 - build-system = [ 54 - setuptools 55 - ]; 52 + build-system = [ setuptools ]; 56 53 57 54 dependencies = [ 58 55 appdirs ··· 93 90 chmod +x $out/bin/tabcmd 94 91 ''; 95 92 96 - pythonImportsCheck = [ 97 - "tabcmd" 98 - ]; 93 + pythonImportsCheck = [ "tabcmd" ]; 99 94 100 95 meta = with lib; { 101 96 description = "A command line client for working with Tableau Server";