From d09ee141f077cc5ad42acff11a094bad8336c09b Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Wed, 20 Apr 2022 03:38:06 +0200 Subject: [PATCH] python3Packages.radio_beam: propagate numpy, scipy, six --- .../python-modules/radio_beam/default.nix | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/radio_beam/default.nix b/pkgs/development/python-modules/radio_beam/default.nix index 1fcf778a58cb..bcb099887695 100644 --- a/pkgs/development/python-modules/radio_beam/default.nix +++ b/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 = ''