python3.pkgs.tiledb: init at 0.5.0

This commit is contained in:
Frederik Rietdijk 2019-11-25 20:32:43 +01:00
parent df13589f49
commit 6e61ff057b
2 changed files with 77 additions and 0 deletions

View File

@ -0,0 +1,73 @@
{ lib
, python
, buildPythonPackage
, fetchFromGitHub
, cython
, tiledb
, numpy
, wheel
, isPy3k
, setuptools_scm
, psutil
}:
buildPythonPackage rec {
pname = "tiledb";
version = "0.5.0";
format = "setuptools";
src = fetchFromGitHub {
owner = "TileDB-Inc";
repo = "TileDB-Py";
rev = version;
sha256 = "1c9wl207c8jz0695gy8p6bxywyd1k7wmczcfl7s0hlbknliamvyx";
};
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"
'';
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 ];
};
}

View File

@ -5254,6 +5254,10 @@ in {
texttable = callPackage ../development/python-modules/texttable { };
tiledb = callPackage ../development/python-modules/tiledb {
inherit (pkgs) tiledb;
};
tiros = callPackage ../development/python-modules/tiros { };
tifffile = callPackage ../development/python-modules/tifffile { };