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
-
{ lib
2
-
, buildPythonPackage
3
-
, fetchFromGitHub
4
-
, matplotlib
5
-
, numpy
6
-
, openpyxl
7
-
, pandas
8
-
, poetry-core
9
-
, pytestCheckHook
10
-
, pythonOlder
0
11
}:
12
13
buildPythonPackage rec {
···
24
hash = "sha256-cT5CU1r3LZ9ValJwRUA0PaISmF6kXAz40alXbWYogGA=";
25
};
26
27
-
build-system = [
28
-
poetry-core
29
-
];
30
31
dependencies = [
32
matplotlib
···
35
pandas
36
];
37
38
-
nativeCheckInputs = [
39
-
pytestCheckHook
40
-
];
41
42
-
pythonImportsCheck = [
43
-
"niapy"
44
-
];
45
46
meta = with lib; {
47
description = "Micro framework for building nature-inspired algorithms";
···
1
+
{
2
+
lib,
3
+
buildPythonPackage,
4
+
fetchFromGitHub,
5
+
matplotlib,
6
+
numpy,
7
+
openpyxl,
8
+
pandas,
9
+
poetry-core,
10
+
pytestCheckHook,
11
+
pythonOlder,
12
}:
13
14
buildPythonPackage rec {
···
25
hash = "sha256-cT5CU1r3LZ9ValJwRUA0PaISmF6kXAz40alXbWYogGA=";
26
};
27
28
+
build-system = [ poetry-core ];
0
0
29
30
dependencies = [
31
matplotlib
···
34
pandas
35
];
36
37
+
nativeCheckInputs = [ pytestCheckHook ];
0
0
38
39
+
pythonImportsCheck = [ "niapy" ];
0
0
40
41
meta = with lib; {
42
description = "Micro framework for building nature-inspired algorithms";