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