python3Packages.radio_beam: propagate numpy, scipy, six

main
Martin Weinelt 2 years ago
parent d8eb5fd7a4
commit d09ee141f0
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759
  1. 17
      pkgs/development/python-modules/radio_beam/default.nix

@ -3,14 +3,17 @@
, buildPythonPackage
, setuptools-scm
, astropy
, numpy
, scipy
, six
, pytestCheckHook
, pytest-doctestplus
, scipy
}:
buildPythonPackage rec {
pname = "radio_beam";
version = "0.3.3";
format = "pyproject";
src = fetchPypi {
inherit version;
@ -22,9 +25,17 @@ buildPythonPackage rec {
setuptools-scm
];
propagatedBuildInputs = [ astropy ];
propagatedBuildInputs = [
astropy
numpy
scipy
six
];
checkInputs = [ pytestCheckHook pytest-doctestplus scipy ];
checkInputs = [
pytestCheckHook
pytest-doctestplus
];
# Tests must be run in the build directory
preCheck = ''

Loading…
Cancel
Save