forked from materialsinnovation/pymks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.nix
59 lines (53 loc) · 905 Bytes
/
default.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, sfepy
, dask
, scikitlearn
, pytestcov
, deprecated
, nbval
, dask-ml
, python
, matplotlib
, openssh
, graphviz
, pygraphviz
, pyfftw
, graspi
}:
buildPythonPackage rec {
pname = "pymks";
version = "0.4.2";
src = lib.cleanSource ./.;
propagatedBuildInputs = [
sfepy
dask
scikitlearn
pytestcov
deprecated
nbval
dask-ml
matplotlib
openssh
graphviz
pygraphviz
pyfftw
graspi
];
checkInputs = [
python
];
checkPhase = ''
export OMPI_MCA_plm_rsh_agent=${openssh}/bin/ssh
${python.interpreter} -c "import pymks; pymks.test()"
'';
pythonImportsCheck = ["pymks"];
meta = with lib; {
homepage = "https://pymks.org";
description = "The Materials Knowledge System in Python";
license = licenses.mit;
maintainers = with maintainers; [ wd15 ];
};
}