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
16
boost,
17
17
maeparser,
18
18
coordgenlibs,
19
19
+
ctestCheckHook,
19
20
}:
20
21
21
22
stdenv.mkDerivation {
···
54
55
coordgenlibs
55
56
];
56
57
58
58
+
nativeCheckInputs = [
59
59
+
ctestCheckHook
60
60
+
];
61
61
+
57
62
cmakeFlags = [
58
63
(lib.cmakeBool "RUN_SWIG" true)
59
64
(lib.cmakeBool "PYTHON_BINDINGS" true)
60
65
(lib.cmakeFeature "PYTHON_INSTDIR" "${placeholder "out"}/${python3.sitePackages}")
61
66
];
67
67
+
68
68
+
disabledTests = [
69
69
+
"test_cifspacegroup_11"
70
70
+
"pybindtest_obconv_writers"
71
71
+
];
72
72
+
73
73
+
doCheck = true;
74
74
+
75
75
+
dontUseNinjaCheck = true;
62
76
63
77
meta = {
64
78
description = "Toolbox designed to speak the many languages of chemical data";