summary refs log tree commit diff
path: root/pkgs/development/python-modules/duckdb
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2021-07-03 14:37:43 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2021-07-03 14:37:43 +0200
commite197447e564aef3dc5650c5a18b3f883c4d10f49 (patch)
tree0299e0c060832c64d40c1a49fb48a7ba4c82f682 /pkgs/development/python-modules/duckdb
parent698a49a14cdccbae29f7e3b190ec09eb488279a7 (diff)
downloadnixpkgs-e197447e564aef3dc5650c5a18b3f883c4d10f49.tar
nixpkgs-e197447e564aef3dc5650c5a18b3f883c4d10f49.tar.gz
nixpkgs-e197447e564aef3dc5650c5a18b3f883c4d10f49.tar.bz2
nixpkgs-e197447e564aef3dc5650c5a18b3f883c4d10f49.tar.lz
nixpkgs-e197447e564aef3dc5650c5a18b3f883c4d10f49.tar.xz
nixpkgs-e197447e564aef3dc5650c5a18b3f883c4d10f49.tar.zst
nixpkgs-e197447e564aef3dc5650c5a18b3f883c4d10f49.zip
python3Packages.duckdb: minor updates
Diffstat (limited to 'pkgs/development/python-modules/duckdb')
-rw-r--r--pkgs/development/python-modules/duckdb/default.nix20
1 files changed, 13 insertions, 7 deletions
diff --git a/pkgs/development/python-modules/duckdb/default.nix b/pkgs/development/python-modules/duckdb/default.nix
index 4a4dd279a52..fd360bfbd12 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 ];
   };
 }