summary refs log tree commit diff
path: root/pkgs/development/python-modules/radio_beam/default.nix
blob: 58137e3adbdbde29b8d2a30127944c2a3d198104 (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
{ lib
, fetchPypi
, buildPythonPackage
, astropy
, pytestCheckHook
, pytest-doctestplus
, scipy
}:

buildPythonPackage rec {
  pname = "radio_beam";
  version = "0.3.3";

  src = fetchPypi {
    inherit version;
    pname = "radio-beam";
    sha256 = "e34902d91713ccab9f450b9d3e82317e292cf46a30bd42f9ad3c9a0519fcddcd";
  };

  propagatedBuildInputs = [ astropy ];

  checkInputs = [ pytestCheckHook pytest-doctestplus scipy ];

  # Tests must be run in the build directory
  preCheck = ''
    cd build/lib
  '';

  meta = {
    description = "Tools for Beam IO and Manipulation";
    homepage = "http://radio-astro-tools.github.io";
    license = lib.licenses.bsd3;
    platforms = lib.platforms.all;
    maintainers = with lib.maintainers; [ smaret ];
  };
}