duckdb-engine: 0.5.0 -> 0.6.4

This commit is contained in:
Phillip Cloud 2022-09-08 04:56:01 -04:00
parent 670b6452c0
commit ed482b0dde
No known key found for this signature in database
GPG Key ID: D908212070FD785E

View File

@ -13,7 +13,7 @@
buildPythonPackage rec {
pname = "duckdb-engine";
version = "0.5.0";
version = "0.6.4";
format = "pyproject";
disabled = pythonOlder "3.7";
@ -21,8 +21,8 @@ buildPythonPackage rec {
src = fetchFromGitHub {
repo = "duckdb_engine";
owner = "Mause";
rev = "refs/tags/v${version}";
hash = "sha256-6bR2pt7gUHZu4I7VmJgVsFT9u3/e4c9RAKHHlbX/Tyk=";
rev = "v${version}";
hash = "sha256-7PfrI4bNz0XtBa/cb8T43j06BJ3B2S5zIyBZsEusyXc=";
};
nativeBuildInputs = [
@ -34,6 +34,15 @@ buildPythonPackage rec {
sqlalchemy
];
preCheck = ''
export HOME="$(mktemp -d)"
'';
# this test tries to download the httpfs extension
disabledTests = [
"test_preload_extension"
];
checkInputs = [
pytestCheckHook
hypothesis