2018-05-28 12:50:10 +02:00
|
|
|
{ lib
|
2020-12-28 14:54:14 -05:00
|
|
|
, fetchPypi
|
2018-05-28 12:50:10 +02:00
|
|
|
, buildPythonPackage
|
2020-06-20 15:33:37 -07:00
|
|
|
, aplpy
|
2020-12-28 14:54:14 -05:00
|
|
|
, joblib
|
2018-05-28 12:50:10 +02:00
|
|
|
, astropy
|
|
|
|
, radio_beam
|
2019-07-23 12:15:59 +02:00
|
|
|
, pytest
|
|
|
|
, pytest-astropy
|
|
|
|
, astropy-helpers
|
|
|
|
}:
|
2018-05-28 12:50:10 +02:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "spectral-cube";
|
2020-12-28 14:54:14 -05:00
|
|
|
version = "0.5.0";
|
|
|
|
format = "pyproject";
|
2019-12-02 11:07:26 +01:00
|
|
|
|
2020-12-28 14:54:14 -05:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "17zisr26syfb8kn89xj17lrdycm0hsmy5yp5zrn236wgd8rjriki";
|
2018-05-28 12:50:10 +02:00
|
|
|
};
|
|
|
|
|
2019-07-23 12:15:59 +02:00
|
|
|
nativeBuildInputs = [ astropy-helpers ];
|
2020-12-28 14:54:14 -05:00
|
|
|
propagatedBuildInputs = [ astropy radio_beam joblib ];
|
2020-06-20 15:33:37 -07:00
|
|
|
checkInputs = [ aplpy pytest pytest-astropy ];
|
2019-07-23 12:15:59 +02:00
|
|
|
|
|
|
|
checkPhase = ''
|
2020-12-28 14:54:14 -05:00
|
|
|
pytest spectral_cube
|
2019-07-23 12:15:59 +02:00
|
|
|
'';
|
2018-05-28 12:50:10 +02:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Library for reading and analyzing astrophysical spectral data cubes";
|
2020-03-31 21:11:51 -04:00
|
|
|
homepage = "http://radio-astro-tools.github.io";
|
2018-05-28 12:50:10 +02:00
|
|
|
license = lib.licenses.bsd3;
|
|
|
|
platforms = lib.platforms.all;
|
|
|
|
maintainers = with lib.maintainers; [ smaret ];
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|