about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorRobert Scott <code@humanleg.org.uk>2021-09-01 21:14:43 +0100
committerGitHub <noreply@github.com>2021-09-01 21:14:43 +0100
commit837d765221201227fa62bf7a77e94577e8dc00f7 (patch)
tree9d88ec58fb649a96e1a174fb1769a76769877c32 /pkgs
parent186df90343080df767ec28d73fd72a928b1841ce (diff)
parent7448cab54bba2b432d6e4115990a3fc6774f47db (diff)
Merge pull request #136295 from smaret/fix-136294
python3Packages.spectral-cube: add missing dependencies
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/spectral-cube/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/spectral-cube/default.nix b/pkgs/development/python-modules/spectral-cube/default.nix
index 329b225b57694..5a022f4670872 100644
--- a/pkgs/development/python-modules/spectral-cube/default.nix
+++ b/pkgs/development/python-modules/spectral-cube/default.nix
@@ -6,6 +6,8 @@
 , joblib
 , astropy
 , radio_beam
+, six
+, dask
 , pytestCheckHook
 , pytest-astropy
 , astropy-helpers
@@ -31,7 +33,7 @@ buildPythonPackage rec {
   ];
 
   nativeBuildInputs = [ astropy-helpers ];
-  propagatedBuildInputs = [ astropy radio_beam joblib ];
+  propagatedBuildInputs = [ astropy radio_beam joblib six dask ];
   checkInputs = [ pytestCheckHook aplpy pytest-astropy ];
 
   meta = {