tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python312Packages.colormath: format with nixfmt
Fabian Affolter
2 years ago
fc4e93e2
7fb25efa
+12
-17
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
colormath
default.nix
+12
-17
pkgs/development/python-modules/colormath/default.nix
···
1
1
-
{ lib
2
2
-
, buildPythonPackage
3
3
-
, fetchFromGitHub
4
4
-
, networkx
5
5
-
, numpy
6
6
-
, pytestCheckHook
7
7
-
, pythonOlder
8
8
-
, setuptools
1
1
+
{
2
2
+
lib,
3
3
+
buildPythonPackage,
4
4
+
fetchFromGitHub,
5
5
+
networkx,
6
6
+
numpy,
7
7
+
pytestCheckHook,
8
8
+
pythonOlder,
9
9
+
setuptools,
9
10
}:
10
11
11
12
buildPythonPackage rec {
···
25
26
hash = "sha256-eACVPIQFgiGiVmQ/PjUxP/UH/hBOsCywz5PlgpA4dk4=";
26
27
};
27
28
28
28
-
build-system = [
29
29
-
setuptools
30
30
-
];
29
29
+
build-system = [ setuptools ];
31
30
32
31
dependencies = [
33
32
networkx
34
33
numpy
35
34
];
36
35
37
37
-
nativeCheckInputs = [
38
38
-
pytestCheckHook
39
39
-
];
36
36
+
nativeCheckInputs = [ pytestCheckHook ];
40
37
41
41
-
pythonImportsCheck = [
42
42
-
"colormath"
43
43
-
];
38
38
+
pythonImportsCheck = [ "colormath" ];
44
39
45
40
meta = with lib; {
46
41
description = "Color math and conversion library";