blob: f773239c6118536c36b8e2aad96d02a8fb1fc930 (
about) (
plain)
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
|
{
buildPythonPackage,
lib,
fetchFromGitHub,
networkx,
numpy,
scipy,
six,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "geometric";
version = "1.1";
format = "setuptools";
src = fetchFromGitHub {
owner = "leeping";
repo = "geomeTRIC";
tag = version;
hash = "sha256-hxNzyuupktUWDzZXXJNsVoC6m/kyE1fbfY5K6LiO+x0=";
};
propagatedBuildInputs = [
networkx
numpy
scipy
six
];
preCheck = ''
export OMP_NUM_THREADS=2
'';
nativeCheckInputs = [ pytestCheckHook ];
meta = with lib; {
description = "Geometry optimization code for molecular structures";
mainProgram = "geometric-optimize";
homepage = "https://github.com/leeping/geomeTRIC";
license = [ licenses.bsd3 ];
maintainers = [ maintainers.markuskowa ];
};
}
|