summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2025-01-19 21:15:13 +0100
committerMartin Weinelt <hexa@darmstadt.ccc.de>2025-01-27 10:55:15 +0100
commitf3f59cd391dd7cc2b5a7aa461d86f103a1ce99bd (patch)
treea87f151a281adaf34904bea01af9d0a6545c1ee4 /pkgs/development/python-modules
parent2d2b44c12da5c1ee362ad1e01e6e7c33ba84ead6 (diff)
python3Packages.duckdb-engine: 0.14.2 -> 0.15.0
https://github.com/Mause/duckdb_engine/blob/v0.15.0/CHANGELOG.md
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/duckdb-engine/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/duckdb-engine/default.nix b/pkgs/development/python-modules/duckdb-engine/default.nix
index 9e5f76ea4347..b91569d27eb8 100644
--- a/pkgs/development/python-modules/duckdb-engine/default.nix
+++ b/pkgs/development/python-modules/duckdb-engine/default.nix
@@ -19,7 +19,7 @@
buildPythonPackage rec {
pname = "duckdb-engine";
- version = "0.14.2";
+ version = "0.15.0";
pyproject = true;
disabled = pythonOlder "3.8";
@@ -28,7 +28,7 @@ buildPythonPackage rec {
repo = "duckdb_engine";
owner = "Mause";
tag = "v${version}";
- hash = "sha256-ZPvkLVPyRPBc9O/yIowY6J1Ve4bxL+opBxrBHIFpFhk=";
+ hash = "sha256-mxv6xYO31MDzHvIf7Zk+kFtm6fX3x3AaJNn7RhvJ2fY=";
};
nativeBuildInputs = [ poetry-core ];
@@ -80,7 +80,7 @@ buildPythonPackage rec {
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";
+ changelog = "https://github.com/Mause/duckdb_engine/blob/${src.tag}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ cpcloud ];
};