mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
python312Packages.mne-python: unbreak tests (#353888)
This commit is contained in:
commit
b83d9abfb3
@ -40,12 +40,12 @@ buildPythonPackage rec {
|
|||||||
--replace-fail "--cov-branch" ""
|
--replace-fail "--cov-branch" ""
|
||||||
'';
|
'';
|
||||||
|
|
||||||
nativeBuildInputs = [
|
build-system = [
|
||||||
hatchling
|
hatchling
|
||||||
hatch-vcs
|
hatch-vcs
|
||||||
];
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
dependencies = [
|
||||||
numpy
|
numpy
|
||||||
scipy
|
scipy
|
||||||
matplotlib
|
matplotlib
|
||||||
@ -74,8 +74,10 @@ buildPythonPackage rec {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
disabledTests = [
|
disabledTests = [
|
||||||
# Fails due to changes in Numpy types
|
# requires qtbot which is unmaintained/not in Nixpkgs:
|
||||||
"mne.stats._adjacency.combine_adjacency"
|
"test_plotting_scalebars"
|
||||||
|
# tries to write a datetime object to hdf5, which fails:
|
||||||
|
"test_hitachi_basic"
|
||||||
];
|
];
|
||||||
|
|
||||||
pythonImportsCheck = [ "mne" ];
|
pythonImportsCheck = [ "mne" ];
|
||||||
|
Loading…
Reference in New Issue
Block a user