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
|
{
stdenv,
buildPythonPackage,
lib,
fetchPypi,
poetry-core,
ipykernel,
networkx,
numpy,
packaging,
pint,
pydantic,
pytestCheckHook,
scipy,
}:
buildPythonPackage rec {
pname = "qcelemental";
version = "0.29.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-v2NO5lLn2V6QbikZiVEyJCM7HXBcJq/qyG5FHzFrPAQ=";
};
build-system = [ poetry-core ];
dependencies = [
numpy
packaging
pint
pydantic
];
optional-dependencies = {
viz = [
# TODO: nglview
ipykernel
];
align = [
networkx
scipy
];
};
nativeCheckInputs = [ pytestCheckHook ] ++ lib.concatAttrValues optional-dependencies;
pythonImportsCheck = [ "qcelemental" ];
meta = {
broken = stdenv.hostPlatform.isDarwin;
description = "Periodic table, physical constants and molecule parsing for quantum chemistry";
homepage = "https://github.com/MolSSI/QCElemental";
changelog = "https://github.com/MolSSI/QCElemental/blob/v${version}/docs/changelog.rst";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ sheepforce ];
};
}
|