Merge pull request #62166 from Infinisil/fix/python-dynd

python3Packages.dynd: Fix build
This commit is contained in:
Silvan Mosberger 2019-05-28 22:25:46 +02:00 committed by GitHub
commit 875a015e12
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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; {