e79b1e6a9a
This only affects the python package fixes #84091
79 lines
1.7 KiB
Nix
79 lines
1.7 KiB
Nix
{ lib
|
|
, python
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, cython
|
|
, tiledb
|
|
, numpy
|
|
, wheel
|
|
, isPy3k
|
|
, setuptools_scm
|
|
, psutil
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "tiledb";
|
|
version = "0.5.6";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "TileDB-Inc";
|
|
repo = "TileDB-Py";
|
|
rev = version;
|
|
sha256 = "0cgm4dhyqay26xmrzlv21ha8qh55m4q3yr338lrv81ngz77zxsvw";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cython
|
|
setuptools_scm
|
|
];
|
|
|
|
buildInputs = [
|
|
tiledb
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
numpy
|
|
wheel # No idea why but it is listed
|
|
];
|
|
|
|
checkInputs = [
|
|
psutil
|
|
];
|
|
|
|
TILEDB_PATH = tiledb;
|
|
|
|
SETUPTOOLS_SCM_PRETEND_VERSION = version;
|
|
|
|
disabled = !isPy3k; # Not bothering with python2 anymore
|
|
|
|
postPatch = ''
|
|
# Hardcode path to shared object
|
|
substituteInPlace tiledb/__init__.py --replace \
|
|
'os.path.join(lib_dir, lib_name)' 'os.path.join("${tiledb}/lib", lib_name)'
|
|
|
|
# Disable failing test
|
|
substituteInPlace tiledb/tests/test_examples.py --replace \
|
|
"test_docs" "dont_test_docs"
|
|
# these tests don't always fail
|
|
substituteInPlace tiledb/tests/test_libtiledb.py --replace \
|
|
"test_varlen_write_int_subarray" "dont_test_varlen_write_int_subarray"
|
|
substituteInPlace tiledb/tests/test_metadata.py --replace \
|
|
"test_metadata_consecutive" "dont_test_metadata_consecutive"
|
|
'';
|
|
|
|
checkPhase = ''
|
|
pushd "$out"
|
|
${python.interpreter} -m unittest tiledb.tests.all.suite_test
|
|
popd
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Python interface to the TileDB storage manager";
|
|
homepage = "https://github.com/TileDB-Inc/TileDB-Py";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fridh ];
|
|
};
|
|
|
|
}
|