depot/third_party/nixpkgs/pkgs/development/python-modules/duckdb-engine/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

73 lines
1.4 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
pythonOlder,
duckdb,
hypothesis,
ipython-sql,
pandas,
poetry-core,
pytest-remotedata,
snapshottest,
sqlalchemy,
typing-extensions,
}:
buildPythonPackage rec {
pname = "duckdb-engine";
version = "0.12.1";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
repo = "duckdb_engine";
owner = "Mause";
rev = "refs/tags/v${version}";
hash = "sha256-+l6sRZHJnLfei1LR8WHqpC+0+91VLYKXn2e0w9+QRyk=";
};
nativeBuildInputs = [ poetry-core ];
propagatedBuildInputs = [
duckdb
sqlalchemy
];
preCheck = ''
export HOME="$(mktemp -d)"
'';
disabledTests = [
# test should be skipped based on sqlalchemy version but isn't and fails
"test_commit"
];
nativeCheckInputs = [ pytestCheckHook ];
checkInputs = [
hypothesis
ipython-sql
pandas
pytest-remotedata
snapshottest
typing-extensions
];
pytestFlagsArray = [
"-m"
"'not remote_data'"
];
pythonImportsCheck = [ "duckdb_engine" ];
meta = with lib; {
description = "SQLAlchemy driver for duckdb";
homepage = "https://github.com/Mause/duckdb_engine";
changelog = "https://github.com/Mause/duckdb_engine/blob/v${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ cpcloud ];
};
}