python310Packages.duckdb-engine: update description

This commit is contained in:
Fabian Affolter 2022-08-20 09:04:04 +02:00 committed by GitHub
parent 17fa3e8c27
commit 092b85b9eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,16 +25,28 @@ buildPythonPackage rec {
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 ];