1{ lib
2, fetchPypi
3, buildPythonPackage
4, astropy }:
5
6buildPythonPackage rec {
7 pname = "radio_beam";
8 version = "0.2";
9
10 doCheck = false; # the tests requires several pytest plugins that are not in nixpkgs
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "0gbnwnk89n8z0xwn41rc7wpr0fwrzkvxficyki3dyqbxq7y3qfrv";
15 };
16
17 propagatedBuildInputs = [ astropy ];
18
19 meta = {
20 description = "Tools for Beam IO and Manipulation";
21 homepage = http://radio-astro-tools.github.io;
22 license = lib.licenses.bsd3;
23 platforms = lib.platforms.all;
24 maintainers = with lib.maintainers; [ smaret ];
25 };
26}
27
28