python3Packages.dynd: Fix build

This commit is contained in:
Silvan Mosberger 2019-05-28 20:45:56 +02:00
parent 3edeb5ccd2
commit 91d18c0f4b
No known key found for this signature in database
GPG Key ID: 9424360B4B85C9E7

@ -30,7 +30,8 @@ buildPythonPackage rec {
# Python 3 works but has a broken import test that I couldn't
# figure out.
doCheck = !isPy3k;
buildInputs = [ pkgs.cmake pkgs.libdynd.dev cython ];
nativeBuildInputs = [ pkgs.cmake ];
buildInputs = [ pkgs.libdynd.dev cython ];
propagatedBuildInputs = [ numpy pkgs.libdynd ];
meta = with stdenv.lib; {