python3Packages.sumo: disable sensitive test

This commit is contained in:
Jonathan Ringer
2022-02-10 18:25:11 -08:00
committed by Jonathan Ringer
parent e011bae635
commit 36f356727b
@@ -2,6 +2,7 @@
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, cython
, h5py
, matplotlib
, numpy
@@ -28,6 +29,10 @@ buildPythonPackage rec {
sha256 = "1vwqyv215yf51j1278cn7l8mpqmy1grm9j7z3hxjlz4w65cff324";
};
nativeBuildInputs = [
cython
];
propagatedBuildInputs = [
spglib
numpy
@@ -44,6 +49,11 @@ buildPythonPackage rec {
pytestCheckHook
];
disabledTests = [
# slight disagreement between caastepxbin versions
"test_castep_phonon_read_bands"
];
postPatch = ''
substituteInPlace setup.py \
--replace "castepxbin==0.1.0" "castepxbin>=0.1.0"