python38Packages.tables: fix build for 3.8
We need to regenerate the C code with Cython.
This commit is contained in:
parent
d9c056e6fa
commit
8607aa5c39
@ -6,16 +6,27 @@ with stdenv.lib;
|
|||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
version = "3.6.0";
|
version = "3.6.0";
|
||||||
pname = "tables";
|
pname = "tables";
|
||||||
disabled = isPy38; # unable to build, remove with next bump.
|
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "0k9xc0b49j311r6yayw7wzjay6ch3jznijhzc4x33yv490hqhd6v";
|
sha256 = "0k9xc0b49j311r6yayw7wzjay6ch3jznijhzc4x33yv490hqhd6v";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ hdf5 cython bzip2 lzo c-blosc ];
|
nativeBuildInputs = [ cython ];
|
||||||
|
|
||||||
|
buildInputs = [ hdf5 bzip2 lzo c-blosc ];
|
||||||
propagatedBuildInputs = [ numpy numexpr six mock ];
|
propagatedBuildInputs = [ numpy numexpr six mock ];
|
||||||
|
|
||||||
|
# When doing `make distclean`, ignore docs
|
||||||
|
postPatch = ''
|
||||||
|
substituteInPlace Makefile --replace "src doc" "src"
|
||||||
|
'';
|
||||||
|
|
||||||
|
# Regenerate C code with Cython
|
||||||
|
preBuild = ''
|
||||||
|
make distclean
|
||||||
|
'';
|
||||||
|
|
||||||
# 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 = [
|
||||||
|
Loading…
x
Reference in New Issue
Block a user