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

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

  doCheck = false; # the tests requires several pytest plugins that are not in nixpkgs

  src = fetchPypi {
    inherit pname version;
    sha256 = "0gbnwnk89n8z0xwn41rc7wpr0fwrzkvxficyki3dyqbxq7y3qfrv";
  };

  propagatedBuildInputs = [ astropy ];

  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 ];
  };
}