blob: 9ad35951491c565fb172ceecd39b9ea340ef16bb (
plain)
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
40
41
42
43
44
45
46
47
48
49
50
|
{
lib,
fetchPypi,
buildPythonPackage,
setuptools-scm,
astropy,
numpy,
matplotlib,
scipy,
six,
pytestCheckHook,
pytest-astropy,
}:
buildPythonPackage rec {
pname = "radio-beam";
version = "0.3.9";
pyproject = true;
src = fetchPypi {
inherit version;
pname = "radio_beam"; # Tarball was uploaded with an underscore in this version
hash = "sha256-m1/qe8ybJlQyE3hGM7MugWMMnAhVB3t6v0tGz42E5kQ=";
};
nativeBuildInputs = [ setuptools-scm ];
propagatedBuildInputs = [
astropy
numpy
scipy
six
];
nativeCheckInputs = [
pytestCheckHook
matplotlib
pytest-astropy
];
pythonImportsCheck = [ "radio_beam" ];
meta = {
description = "Tools for Beam IO and Manipulation";
homepage = "http://radio-astro-tools.github.io";
changelog = "https://github.com/radio-astro-tools/radio-beam/releases/tag/v${version}";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ smaret ];
};
}
|