1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-19 04:02:10 +00:00

Merge pull request #136295 from smaret/fix-136294

python3Packages.spectral-cube: add missing dependencies
This commit is contained in:
Robert Scott 2021-09-01 21:14:43 +01:00 committed by GitHub
commit 837d765221
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 = {