python310Packages.tiledb 0 -> 1 attrpath: python310Packages.tiledb Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/x8599v1zif2nmwnm0ggyzqfk8ja4xqsg-packages.json.drv building '/nix/store/x8599v1zif2nmwnm0ggyzqfk8ja4xqsg-packages.json.drv'... Going to be running update for following packages: - python3.10-tiledb-0.19.0 Press Enter key to continue... Running update for: - python3.10-tiledb-0.19.0: UPDATING ... - python3.10-tiledb-0.19.0: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/tiledb/default.nix b/pkgs/development/python-modules/tiledb/default.nix index 7e05668b23d..4716195151c 100644 --- a/pkgs/development/python-modules/tiledb/default.nix +++ b/pkgs/development/python-modules/tiledb/default.nix @@ -15,14 +15,14 @@ buildPythonPackage rec { pname = "tiledb"; - version = "0.19.0"; + version = "0.21.0"; format = "setuptools"; src = fetchFromGitHub { owner = "TileDB-Inc"; repo = "TileDB-Py"; rev = "refs/tags/${version}"; - sha256 = "sha256-eha0I/SJmBGFdvJrNUBg/sx54UXdbjhEbyvI40Vngm4="; + sha256 = "sha256-px0Dn7PZPUpc4wf7ylHuA8+4WEYh044rcPog4c+i11E="; }; nativeBuildInputs = [ No auto update branch exists Old version 0.19.0" not present in staging derivation file with contents: { lib , python , buildPythonPackage , fetchFromGitHub , cython , pybind11 , tiledb , numpy , wheel , isPy3k , setuptools-scm , psutil , pandas }: buildPythonPackage rec { pname = "tiledb"; version = "0.20.0"; format = "setuptools"; src = fetchFromGitHub { owner = "TileDB-Inc"; repo = "TileDB-Py"; rev = "refs/tags/${version}"; hash = "sha256-Be83b9JVxGxPYoOfqTfVm7qAjZD7cfH5BG6tbSHXhIQ="; }; nativeBuildInputs = [ cython pybind11 setuptools-scm ]; buildInputs = [ tiledb ]; propagatedBuildInputs = [ numpy wheel # No idea why but it is listed ]; nativeCheckInputs = [ psutil # optional pandas ]; 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" \ --replace "test_memory_cleanup" "dont_test_memory_cleanup" \ --replace "test_ctx_thread_cleanup" "dont_test_ctx_thread_cleanup" substituteInPlace tiledb/tests/test_metadata.py --replace \ "test_metadata_consecutive" "dont_test_metadata_consecutive" ''; checkPhase = '' pushd "$TMPDIR" ${python.interpreter} -m unittest tiledb.tests.all.suite_test popd ''; pythonImportsCheck = [ "tiledb" ]; 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 ]; # tiledb/core.cc:556:30: error: ‘struct std::array’ has no member named ‘second’ broken = true; }; }