mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
tables: add new package, version 3.1.1
From the project page [1]: > PyTables is a package for managing hierarchical datasets and designed to > efficiently and easily cope with extremely large amounts of data. It offers read/write access to hdf5 archives through a hierarchical interface. I am adding it, because pandas depends on tables for hdf5 read/write functionality. Note: The name is a bit of an issue. The project is called pytables, whereas the python module is simply called tables. I chose to name the nix-expression tables for consistency with the source-tarball and the module name. [1]: http://www.pytables.org/moin
This commit is contained in:
parent
5a96043637
commit
52762ed416
56
pkgs/development/python-modules/tables/default.nix
Normal file
56
pkgs/development/python-modules/tables/default.nix
Normal file
@ -0,0 +1,56 @@
|
||||
{ stdenv, fetchurl, python, buildPythonPackage
|
||||
, cython, bzip2, lzo, numpy, numexpr, hdf5 }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
version = "3.1.1";
|
||||
name = "tables-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/pytables/${name}.tar.gz";
|
||||
sha256 = "18rdzv9xwiapb5c8y47rk2fi3fdm2dpjf68wfycma67ifrih7f9r";
|
||||
};
|
||||
|
||||
buildInputs = [ hdf5 cython bzip2 lzo ];
|
||||
propagatedBuildInputs = [ numpy numexpr ];
|
||||
|
||||
# The setup script complains about missing run-paths, but they are
|
||||
# actually set.
|
||||
setupPyBuildFlags =
|
||||
[ "--hdf5=${hdf5}"
|
||||
"--lzo=${lzo}"
|
||||
"--bzip2=${bzip2}"
|
||||
];
|
||||
setupPyInstallFlags = setupPyBuildFlags;
|
||||
|
||||
# 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/";
|
||||
};
|
||||
}
|
@ -146,6 +146,12 @@ rec {
|
||||
inherit python;
|
||||
};
|
||||
|
||||
tables = import ../development/python-modules/tables {
|
||||
inherit (pkgs) stdenv fetchurl bzip2 lzo;
|
||||
inherit python buildPythonPackage cython numpy numexpr;
|
||||
hdf5 = pkgs.hdf5.override { zlib = pkgs.zlib; };
|
||||
};
|
||||
|
||||
# packages defined here
|
||||
|
||||
aafigure = buildPythonPackage rec {
|
||||
|
Loading…
Reference in New Issue
Block a user