python3.pkgs.tables: fix build against hdf5
In 6cbf0b4bd22017f11f25d4b44e7cfaa02f3029dc the package splitted of header files, which broke this build as a result. cc @ttuegel
This commit is contained in:
parent
43deb3b335
commit
d94f92c816
@ -1,6 +1,8 @@
|
|||||||
{ stdenv, fetchPypi, python, buildPythonPackage
|
{ stdenv, fetchPypi, python, buildPythonPackage
|
||||||
, cython, bzip2, lzo, numpy, numexpr, hdf5, six, c-blosc, mock }:
|
, cython, bzip2, lzo, numpy, numexpr, hdf5, six, c-blosc, mock }:
|
||||||
|
|
||||||
|
with stdenv.lib;
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
version = "3.5.2";
|
version = "3.5.2";
|
||||||
pname = "tables";
|
pname = "tables";
|
||||||
@ -15,12 +17,12 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
# The setup script complains about missing run-paths, but they are
|
# The setup script complains about missing run-paths, but they are
|
||||||
# actually set.
|
# actually set.
|
||||||
setupPyBuildFlags =
|
setupPyBuildFlags = [
|
||||||
[ "--hdf5=${hdf5}"
|
"--hdf5=${getDev hdf5}"
|
||||||
"--lzo=${lzo}"
|
"--lzo=${getDev lzo}"
|
||||||
"--bzip2=${bzip2.dev}"
|
"--bzip2=${getDev bzip2}"
|
||||||
"--blosc=${c-blosc}"
|
"--blosc=${getDev c-blosc}"
|
||||||
];
|
];
|
||||||
|
|
||||||
# Run the test suite.
|
# Run the test suite.
|
||||||
# It requires the build path to be in the python search path.
|
# It requires the build path to be in the python search path.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user