python.pkgs.astropy: fix build
This commit is contained in:
parent
c7299ea37b
commit
6bbc2e09da
|
@ -2,9 +2,7 @@
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, numpy
|
, numpy
|
||||||
, cython
|
, pytest }:
|
||||||
, h5py
|
|
||||||
, scipy }:
|
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
|
|
||||||
|
@ -17,7 +15,8 @@ buildPythonPackage rec {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "25e0881a392a2e03b4a705cf9592f01894d23f64797323b21387efa8ea9ec03e";
|
sha256 = "25e0881a392a2e03b4a705cf9592f01894d23f64797323b21387efa8ea9ec03e";
|
||||||
};
|
};
|
||||||
propagatedBuildInputs = [ numpy cython h5py scipy ];
|
|
||||||
|
propagatedBuildInputs = [ pytest numpy ]; # yes it really has pytest in install_requires
|
||||||
|
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
|
|
Loading…
Reference in New Issue