tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
python312Packages.niapy: format with nixftm
Fabian Affolter
2 years ago
bde92aee
981bc952
+14
-19
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
niapy
default.nix
+14
-19
pkgs/development/python-modules/niapy/default.nix
···
1
1
-
{ lib
2
2
-
, buildPythonPackage
3
3
-
, fetchFromGitHub
4
4
-
, matplotlib
5
5
-
, numpy
6
6
-
, openpyxl
7
7
-
, pandas
8
8
-
, poetry-core
9
9
-
, pytestCheckHook
10
10
-
, pythonOlder
1
1
+
{
2
2
+
lib,
3
3
+
buildPythonPackage,
4
4
+
fetchFromGitHub,
5
5
+
matplotlib,
6
6
+
numpy,
7
7
+
openpyxl,
8
8
+
pandas,
9
9
+
poetry-core,
10
10
+
pytestCheckHook,
11
11
+
pythonOlder,
11
12
}:
12
13
13
14
buildPythonPackage rec {
···
24
25
hash = "sha256-cT5CU1r3LZ9ValJwRUA0PaISmF6kXAz40alXbWYogGA=";
25
26
};
26
27
27
27
-
build-system = [
28
28
-
poetry-core
29
29
-
];
28
28
+
build-system = [ poetry-core ];
30
29
31
30
dependencies = [
32
31
matplotlib
···
35
34
pandas
36
35
];
37
36
38
38
-
nativeCheckInputs = [
39
39
-
pytestCheckHook
40
40
-
];
37
37
+
nativeCheckInputs = [ pytestCheckHook ];
41
38
42
42
-
pythonImportsCheck = [
43
43
-
"niapy"
44
44
-
];
39
39
+
pythonImportsCheck = [ "niapy" ];
45
40
46
41
meta = with lib; {
47
42
description = "Micro framework for building nature-inspired algorithms";