about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2021-07-03 19:00:22 +0100
committerGitHub <noreply@github.com>2021-07-03 19:00:22 +0100
commitf3fc8b9fa888afe3fa9d80ffb4ecab7d96fbeb04 (patch)
tree12e84297bb929b1cfb56fce1682a5bb50f0f1069
parent9206a3fc64376198c27f225a1dfb275f73e193ca (diff)
parente197447e564aef3dc5650c5a18b3f883c4d10f49 (diff)
downloadnixlib-f3fc8b9fa888afe3fa9d80ffb4ecab7d96fbeb04.tar
nixlib-f3fc8b9fa888afe3fa9d80ffb4ecab7d96fbeb04.tar.gz
nixlib-f3fc8b9fa888afe3fa9d80ffb4ecab7d96fbeb04.tar.bz2
nixlib-f3fc8b9fa888afe3fa9d80ffb4ecab7d96fbeb04.tar.lz
nixlib-f3fc8b9fa888afe3fa9d80ffb4ecab7d96fbeb04.tar.xz
nixlib-f3fc8b9fa888afe3fa9d80ffb4ecab7d96fbeb04.tar.zst
nixlib-f3fc8b9fa888afe3fa9d80ffb4ecab7d96fbeb04.zip
Merge pull request #129127 from fabaff/bump-duckdb
duckdb: 0.2.2 -> 0.2.7
-rw-r--r--pkgs/development/libraries/duckdb/default.nix4
-rw-r--r--pkgs/development/python-modules/duckdb/default.nix20
2 files changed, 15 insertions, 9 deletions
diff --git a/pkgs/development/libraries/duckdb/default.nix b/pkgs/development/libraries/duckdb/default.nix
index 60ccf5aeeb23..e63f2c3cfd68 100644
--- a/pkgs/development/libraries/duckdb/default.nix
+++ b/pkgs/development/libraries/duckdb/default.nix
@@ -5,13 +5,13 @@
 
 stdenv.mkDerivation rec {
   pname = "duckdb";
-  version = "0.2.2";
+  version = "0.2.7";
 
   src = fetchFromGitHub {
     owner = "cwida";
     repo = "duckdb";
     rev = "v${version}";
-    sha256 = "1pzz2zjzpvji5am21vd9kjxj0pnxsjmrsfqrym9h2rk2mi7p2cx8";
+    sha256 = "0cnqq2n1424fqg7gfyvrwkk6nvjal2fm5n08xc8q28ynyhq4sfmj";
   };
 
   nativeBuildInputs = [ cmake ];
diff --git a/pkgs/development/python-modules/duckdb/default.nix b/pkgs/development/python-modules/duckdb/default.nix
index 4a4dd279a52e..fd360bfbd120 100644
--- a/pkgs/development/python-modules/duckdb/default.nix
+++ b/pkgs/development/python-modules/duckdb/default.nix
@@ -5,7 +5,7 @@
 , pandas
 , pybind11
 , setuptools-scm
-, pytestrunner
+, pytest-runner
 , pytestCheckHook
 }:
 
@@ -28,18 +28,24 @@ buildPythonPackage rec {
   nativeBuildInputs = [
     pybind11
     setuptools-scm
-    pytestrunner
+    pytest-runner
   ];
 
-  propagatedBuildInputs = [ numpy pandas ];
+  propagatedBuildInputs = [
+    numpy
+    pandas
+  ];
+
+  checkInputs = [
+    pytestCheckHook
+  ];
 
-  checkInputs = [ pytestCheckHook ];
   pythonImportsCheck = [ "duckdb" ];
 
   meta = with lib; {
-    description = "DuckDB is an embeddable SQL OLAP Database Management System";
-    homepage = "https://pypi.python.org/pypi/duckdb";
+    description = "Python binding for DuckDB";
+    homepage = "https://duckdb.org/";
     license = licenses.mit;
-    maintainers = [ maintainers.costrouc ];
+    maintainers = with maintainers; [ costrouc ];
   };
 }