lol

python312Packages.colormath: format with nixfmt

+12 -17
+12 -17
pkgs/development/python-modules/colormath/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchFromGitHub 4 - , networkx 5 - , numpy 6 - , pytestCheckHook 7 - , pythonOlder 8 - , setuptools 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchFromGitHub, 5 + networkx, 6 + numpy, 7 + pytestCheckHook, 8 + pythonOlder, 9 + setuptools, 9 10 }: 10 11 11 12 buildPythonPackage rec { ··· 25 26 hash = "sha256-eACVPIQFgiGiVmQ/PjUxP/UH/hBOsCywz5PlgpA4dk4="; 26 27 }; 27 28 28 - build-system = [ 29 - setuptools 30 - ]; 29 + build-system = [ setuptools ]; 31 30 32 31 dependencies = [ 33 32 networkx 34 33 numpy 35 34 ]; 36 35 37 - nativeCheckInputs = [ 38 - pytestCheckHook 39 - ]; 36 + nativeCheckInputs = [ pytestCheckHook ]; 40 37 41 - pythonImportsCheck = [ 42 - "colormath" 43 - ]; 38 + pythonImportsCheck = [ "colormath" ]; 44 39 45 40 meta = with lib; { 46 41 description = "Color math and conversion library";