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

python312Packages.attrdict: format with nixfmt

+11 -16
+11 -16
pkgs/development/python-modules/attrdict/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchPypi 4 - , pytestCheckHook 5 - , pythonOlder 6 - , setuptools 7 - , six 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchPypi, 5 + pytestCheckHook, 6 + pythonOlder, 7 + setuptools, 8 + six, 8 9 }: 9 10 10 11 buildPythonPackage rec { ··· 30 31 --replace-fail "from collections" "from collections.abc" 31 32 ''; 32 33 33 - build-system = [ 34 - setuptools 35 - ]; 34 + build-system = [ setuptools ]; 36 35 37 - dependencies = [ 38 - six 39 - ]; 36 + dependencies = [ six ]; 40 37 41 38 # Tests are not shipped and source is not tagged 42 39 doCheck = false; 43 40 44 - pythonImportsCheck = [ 45 - "attrdict" 46 - ]; 41 + pythonImportsCheck = [ "attrdict" ]; 47 42 48 43 meta = with lib; { 49 44 description = "A dict with attribute-style access";