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:
commit
d1710ae753
1 changed files with 19 additions and 7 deletions
|
@ -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 ];
|
||||
|
|
Loading…
Reference in a new issue