python312Packages.colormath: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-05-21 10:31:21 +02:00
parent 7fb25efa8b
commit fc4e93e2ee

View File

@ -1,11 +1,12 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, networkx
, numpy
, pytestCheckHook
, pythonOlder
, setuptools
{
lib,
buildPythonPackage,
fetchFromGitHub,
networkx,
numpy,
pytestCheckHook,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
@ -25,22 +26,16 @@ buildPythonPackage rec {
hash = "sha256-eACVPIQFgiGiVmQ/PjUxP/UH/hBOsCywz5PlgpA4dk4=";
};
build-system = [
setuptools
];
build-system = [ setuptools ];
dependencies = [
networkx
numpy
];
nativeCheckInputs = [
pytestCheckHook
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [
"colormath"
];
pythonImportsCheck = [ "colormath" ];
meta = with lib; {
description = "Color math and conversion library";