From 6bbc2e09da03f7b49794b3381c2baeb62ac62f24 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Wed, 6 Sep 2017 17:15:30 +0200 Subject: [PATCH] python.pkgs.astropy: fix build --- pkgs/development/python-modules/astropy/default.nix | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/astropy/default.nix b/pkgs/development/python-modules/astropy/default.nix index 44ff96cf826..ba73c232c89 100644 --- a/pkgs/development/python-modules/astropy/default.nix +++ b/pkgs/development/python-modules/astropy/default.nix @@ -2,9 +2,7 @@ , fetchPypi , buildPythonPackage , numpy -, cython -, h5py -, scipy }: +, pytest }: buildPythonPackage rec { @@ -17,7 +15,8 @@ buildPythonPackage rec { inherit pname version; sha256 = "25e0881a392a2e03b4a705cf9592f01894d23f64797323b21387efa8ea9ec03e"; }; - propagatedBuildInputs = [ numpy cython h5py scipy ]; + + propagatedBuildInputs = [ pytest numpy ]; # yes it really has pytest in install_requires meta = {