summary refs log tree commit diff
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2020-09-15 11:28:51 -0700
committerJon <jonringer@users.noreply.github.com>2020-09-16 00:26:48 -0700
commit389ab45924ba36899ea13452a5e80be96ab10e7b (patch)
treec7103b1565953c808243c9eff5e6b3def323307a
parenteabba0daf0b3a9192a54576a3249e5cc8dc6bf52 (diff)
downloadnixpkgs-389ab45924ba36899ea13452a5e80be96ab10e7b.tar
nixpkgs-389ab45924ba36899ea13452a5e80be96ab10e7b.tar.gz
nixpkgs-389ab45924ba36899ea13452a5e80be96ab10e7b.tar.bz2
nixpkgs-389ab45924ba36899ea13452a5e80be96ab10e7b.tar.lz
nixpkgs-389ab45924ba36899ea13452a5e80be96ab10e7b.tar.xz
nixpkgs-389ab45924ba36899ea13452a5e80be96ab10e7b.tar.zst
nixpkgs-389ab45924ba36899ea13452a5e80be96ab10e7b.zip
python3Packages.hickle: disable tests
Incompatible with astropy>=4.0
-rw-r--r--pkgs/development/python-modules/hickle/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/hickle/default.nix b/pkgs/development/python-modules/hickle/default.nix
index f481509e6a3..6dbaf073d78 100644
--- a/pkgs/development/python-modules/hickle/default.nix
+++ b/pkgs/development/python-modules/hickle/default.nix
@@ -31,10 +31,14 @@ buildPythonPackage rec {
   '';
 
   propagatedBuildInputs = [ h5py numpy dill ];
+
+  doCheck = false; # incompatible with latest astropy
   checkInputs = [
     pytest pytestcov pytestrunner coveralls scipy pandas astropy twine check-manifest codecov
   ];
 
+  pythonImportsCheck = [ "hickle" ];
+
   meta = {
     description = "Serialize Python data to HDF5";
     homepage = "https://github.com/telegraphic/hickle";