python310Packages.persim: disable failing test
This commit is contained in:
parent
7d0ed7f2e5
commit
50c1d0a20e
1 changed files with 4 additions and 2 deletions
|
@ -23,7 +23,7 @@ buildPythonPackage rec {
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "sha256-7w8KJHrc9hBOysFBF9sLJFgXEOqKjZZIFoBTlXALSXU=";
|
hash = "sha256-7w8KJHrc9hBOysFBF9sLJFgXEOqKjZZIFoBTlXALSXU=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
|
@ -61,13 +61,15 @@ buildPythonPackage rec {
|
||||||
"test_mixed_pairs"
|
"test_mixed_pairs"
|
||||||
"test_multiple_diagrams"
|
"test_multiple_diagrams"
|
||||||
"test_n_pixels"
|
"test_n_pixels"
|
||||||
|
# https://github.com/scikit-tda/persim/issues/67
|
||||||
|
"test_persistenceimager"
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
broken = stdenv.isDarwin;
|
|
||||||
description = "Distances and representations of persistence diagrams";
|
description = "Distances and representations of persistence diagrams";
|
||||||
homepage = "https://persim.scikit-tda.org";
|
homepage = "https://persim.scikit-tda.org";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ costrouc ];
|
maintainers = with maintainers; [ costrouc ];
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue