summary refs log tree commit diff
path: root/pkgs/development/python-modules/spectral-cube/default.nix
blob: d2f79c183480ac07f2166ad248e22a9a53c2ac26 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{ lib
, fetchPypi
, buildPythonPackage
, aplpy
, joblib
, astropy
, radio_beam
, pytest
, pytest-astropy
, astropy-helpers
}:

buildPythonPackage rec {
  pname = "spectral-cube";
  version = "0.5.0";
  format = "pyproject";

  src = fetchPypi {
    inherit pname version;
    sha256 = "17zisr26syfb8kn89xj17lrdycm0hsmy5yp5zrn236wgd8rjriki";
  };

  nativeBuildInputs = [ astropy-helpers ];
  propagatedBuildInputs = [ astropy radio_beam joblib ];
  checkInputs = [ aplpy pytest pytest-astropy ];

  checkPhase = ''
    pytest spectral_cube
  '';

  meta = {
    description = "Library for reading and analyzing astrophysical spectral data cubes";
    homepage = "http://radio-astro-tools.github.io";
    license = lib.licenses.bsd3;
    platforms = lib.platforms.all;
    maintainers = with lib.maintainers; [ smaret ];
  };
}