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