2018-05-28 12:50:10 +02:00
|
|
|
{ lib
|
2020-12-28 14:54:14 -05:00
|
|
|
, fetchPypi
|
2021-04-27 13:30:46 -04:00
|
|
|
, fetchpatch
|
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
|
2021-04-27 13:30:46 -04:00
|
|
|
, pytestCheckHook
|
2019-07-23 12:15:59 +02:00
|
|
|
, 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
|
|
|
};
|
|
|
|
|
2021-04-27 13:30:46 -04:00
|
|
|
patches = [
|
|
|
|
# Fix compatibility with radio_beam >= 0.3.3. Will be included
|
|
|
|
# in the next release of spectral cube > 0.5.0
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/radio-astro-tools/spectral-cube/commit/bbe4295ebef7dfa6fe4474275a29acd6cb0cb544.patch";
|
|
|
|
sha256 = "1qddfm3364kc34yf6wd9nd6rxh4qc2v5pqilvz9adwb4a50z28bf";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2019-07-23 12:15:59 +02:00
|
|
|
nativeBuildInputs = [ astropy-helpers ];
|
2020-12-28 14:54:14 -05:00
|
|
|
propagatedBuildInputs = [ astropy radio_beam joblib ];
|
2021-04-27 13:30:46 -04:00
|
|
|
checkInputs = [ pytestCheckHook aplpy pytest-astropy ];
|
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 ];
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|