Merge pull request #187520 from r-ryantm/auto-update/python310Packages.duckdb-engine

python310Packages.duckdb-engine: 0.2.0 -> 0.5.0
This commit is contained in:
Robert Scott 2022-08-20 23:32:30 +01:00 committed by GitHub
commit d1710ae753
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -13,7 +13,7 @@
buildPythonPackage rec {
pname = "duckdb-engine";
version = "0.2.0";
version = "0.5.0";
format = "pyproject";
disabled = pythonOlder "3.7";
@ -22,19 +22,31 @@ buildPythonPackage rec {
repo = "duckdb_engine";
owner = "Mause";
rev = "refs/tags/v${version}";
hash = "sha256-UoTGFsno92iejBGvCsJ/jnhKJ41K9eTGwC7DomAp7IE=";
hash = "sha256-6bR2pt7gUHZu4I7VmJgVsFT9u3/e4c9RAKHHlbX/Tyk=";
};
nativeBuildInputs = [ poetry-core ];
nativeBuildInputs = [
poetry-core
];
propagatedBuildInputs = [ duckdb sqlalchemy ];
propagatedBuildInputs = [
duckdb
sqlalchemy
];
checkInputs = [ pytestCheckHook hypothesis ipython-sql typing-extensions ];
checkInputs = [
pytestCheckHook
hypothesis
ipython-sql
typing-extensions
];
pythonImportsCheck = [ "duckdb_engine" ];
pythonImportsCheck = [
"duckdb_engine"
];
meta = with lib; {
description = "Very very very basic sqlalchemy driver for duckdb";
description = "SQLAlchemy driver for duckdb";
homepage = "https://github.com/Mause/duckdb_engine";
license = licenses.mit;
maintainers = with maintainers; [ cpcloud ];