Files
nixpkgs/pkgs/development/python-modules/tables/default.nix
T

59 lines
1.7 KiB
Nix
Raw Normal View History

2014-06-14 18:24:50 +02:00
{ stdenv, fetchurl, python, buildPythonPackage
, cython, bzip2, lzo, numpy, numexpr, hdf5, six, c-blosc }:
2014-06-14 18:24:50 +02:00
buildPythonPackage rec {
2017-05-27 14:24:47 +02:00
version = "3.4.2";
2017-05-27 11:25:35 +02:00
pname = "tables";
name = "${pname}-${version}";
2014-06-14 18:24:50 +02:00
src = fetchurl {
2016-04-26 14:38:03 +02:00
url = "mirror://pypi/t/tables/${name}.tar.gz";
2017-05-27 14:24:47 +02:00
sha256 = "fdbbea4edb6bad0ac0e53fc7bc6970e78e12eef4944aa4146bcdcb573201676c";
2014-06-14 18:24:50 +02:00
};
buildInputs = [ hdf5 cython bzip2 lzo c-blosc ];
2017-02-16 16:05:10 +00:00
propagatedBuildInputs = [ numpy numexpr six ];
2014-06-14 18:24:50 +02:00
# The setup script complains about missing run-paths, but they are
# actually set.
setupPyBuildFlags =
[ "--hdf5=${hdf5}"
"--lzo=${lzo}"
"--bzip2=${bzip2.dev}"
"--blosc=${c-blosc}"
2014-06-14 18:24:50 +02:00
];
# Run the test suite.
# It requires the build path to be in the python search path.
# These tests take quite some time.
# If the hdf5 library is built with zlib then there is only one
# test-failure. That is the same failure as described in the following
# github issue:
# https://github.com/PyTables/PyTables/issues/269
checkPhase = ''
${python}/bin/${python.executable} <<EOF
import sysconfig
import sys
import os
f = "lib.{platform}-{version[0]}.{version[1]}"
lib = f.format(platform=sysconfig.get_platform(),
version=sys.version_info)
build = os.path.join(os.getcwd(), 'build', lib)
sys.path.insert(0, build)
import tables
r = tables.test()
if not r.wasSuccessful():
sys.exit(1)
EOF
'';
# Disable tests until the failure described above is fixed.
doCheck = false;
meta = {
description = "Hierarchical datasets for Python";
homepage = http://www.pytables.org/;
2014-06-25 22:32:54 +02:00
license = stdenv.lib.licenses.bsd2;
2014-06-14 18:24:50 +02:00
};
}