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

python312Packages.courlan: format with nixfmt

+14 -19
+14 -19
pkgs/development/python-modules/courlan/default.nix
··· 1 - { lib 2 - , babel 3 - , buildPythonPackage 4 - , fetchPypi 5 - , langcodes 6 - , pytestCheckHook 7 - , pythonOlder 8 - , setuptools 9 - , tld 10 - , urllib3 1 + { 2 + lib, 3 + babel, 4 + buildPythonPackage, 5 + fetchPypi, 6 + langcodes, 7 + pytestCheckHook, 8 + pythonOlder, 9 + setuptools, 10 + tld, 11 + urllib3, 11 12 }: 12 13 13 14 buildPythonPackage rec { ··· 30 31 --replace-fail "/tmp" "$TMPDIR" 31 32 ''; 32 33 33 - build-system = [ 34 - setuptools 35 - ]; 34 + build-system = [ setuptools ]; 36 35 37 36 dependencies = [ 38 37 babel ··· 41 40 urllib3 42 41 ]; 43 42 44 - nativeCheckInputs = [ 45 - pytestCheckHook 46 - ]; 43 + nativeCheckInputs = [ pytestCheckHook ]; 47 44 48 45 # disable tests that require an internet connection 49 - disabledTests = [ 50 - "test_urlcheck" 51 - ]; 46 + disabledTests = [ "test_urlcheck" ]; 52 47 53 48 pythonImportsCheck = [ "courlan" ]; 54 49