aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pkgs/development/python-modules/clickhouse-cityhash/default.nix27
-rw-r--r--pkgs/development/python-modules/clickhouse-driver/default.nix48
-rw-r--r--pkgs/top-level/python-packages.nix4
3 files changed, 79 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/clickhouse-cityhash/default.nix b/pkgs/development/python-modules/clickhouse-cityhash/default.nix
new file mode 100644
index 000000000000..4e632cb34038
--- /dev/null
+++ b/pkgs/development/python-modules/clickhouse-cityhash/default.nix
@@ -0,0 +1,27 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, setuptools
+}:
+
+buildPythonPackage rec {
+ pname = "clickhouse-cityhash";
+ version = "1.0.2.3";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "0z8nl0ly2p1h6nygwxs6y40q8y424w40fkjv3jyf8vvcg4h7sdrg";
+ };
+
+ propagatedBuildInputs = [ setuptools ];
+
+ doCheck = false;
+ pythonImportsCheck = [ "clickhouse_cityhash" ];
+
+ meta = with lib; {
+ description = "Python-bindings for CityHash, a fast non-cryptographic hash algorithm";
+ homepage = "https://github.com/xzkostyan/python-cityhash";
+ license = licenses.upl;
+ maintainers = with maintainers; [ breakds ];
+ };
+}
diff --git a/pkgs/development/python-modules/clickhouse-driver/default.nix b/pkgs/development/python-modules/clickhouse-driver/default.nix
new file mode 100644
index 000000000000..9cb88b5cbc9b
--- /dev/null
+++ b/pkgs/development/python-modules/clickhouse-driver/default.nix
@@ -0,0 +1,48 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, setuptools
+, pytz
+, tzlocal
+, clickhouse-cityhash
+, zstd
+, lz4
+, freezegun
+, mock
+, nose
+}:
+
+buildPythonPackage rec {
+ pname = "clickhouse-driver";
+ version = "0.1.5";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "1827cm5z2zd6mxn9alq54bbzw6vhz4a30a54vacqn7nz691qs1gd";
+ };
+
+ propagatedBuildInputs = [
+ setuptools
+ pytz
+ tzlocal
+ clickhouse-cityhash
+ zstd
+ lz4
+ ];
+
+ checkInputs = [
+ freezegun
+ mock
+ nose
+ ];
+
+ doCheck = true;
+ pythonImportsCheck = [ "clickhouse_driver" ];
+
+ meta = with lib; {
+ description = "Python driver with native interface for ClickHouse";
+ homepage = "https://github.com/mymarilyn/clickhouse-driver";
+ license = licenses.mit;
+ maintainers = with maintainers; [ breakds ];
+ };
+}
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index efe772233c5d..9173bb539262 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -1215,6 +1215,10 @@ in {
click-threading = callPackage ../development/python-modules/click-threading { };
+ clickhouse-cityhash = callPackage ../development/python-modules/clickhouse-cityhash {};
+
+ clickhouse-driver = callPackage ../development/python-modules/clickhouse-driver {};
+
cliff = callPackage ../development/python-modules/cliff { };
clifford = callPackage ../development/python-modules/clifford { };