tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
openbabel: enable tests
Emily
4 months ago
bcb95200
36c66d63
+14
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
op
openbabel
package.nix
+14
pkgs/by-name/op/openbabel/package.nix
···
16
boost,
17
maeparser,
18
coordgenlibs,
0
19
}:
20
21
stdenv.mkDerivation {
···
54
coordgenlibs
55
];
56
0
0
0
0
57
cmakeFlags = [
58
(lib.cmakeBool "RUN_SWIG" true)
59
(lib.cmakeBool "PYTHON_BINDINGS" true)
60
(lib.cmakeFeature "PYTHON_INSTDIR" "${placeholder "out"}/${python3.sitePackages}")
61
];
0
0
0
0
0
0
0
0
0
62
63
meta = {
64
description = "Toolbox designed to speak the many languages of chemical data";
···
16
boost,
17
maeparser,
18
coordgenlibs,
19
+
ctestCheckHook,
20
}:
21
22
stdenv.mkDerivation {
···
55
coordgenlibs
56
];
57
58
+
nativeCheckInputs = [
59
+
ctestCheckHook
60
+
];
61
+
62
cmakeFlags = [
63
(lib.cmakeBool "RUN_SWIG" true)
64
(lib.cmakeBool "PYTHON_BINDINGS" true)
65
(lib.cmakeFeature "PYTHON_INSTDIR" "${placeholder "out"}/${python3.sitePackages}")
66
];
67
+
68
+
disabledTests = [
69
+
"test_cifspacegroup_11"
70
+
"pybindtest_obconv_writers"
71
+
];
72
+
73
+
doCheck = true;
74
+
75
+
dontUseNinjaCheck = true;
76
77
meta = {
78
description = "Toolbox designed to speak the many languages of chemical data";