Merge pull request #106039 from breakds/clickhouse-driver
This commit is contained in:
commit
5b7667a1c5
@ -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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -1215,6 +1215,10 @@ in {
|
|||||||
|
|
||||||
click-threading = callPackage ../development/python-modules/click-threading { };
|
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 { };
|
cliff = callPackage ../development/python-modules/cliff { };
|
||||||
|
|
||||||
clifford = callPackage ../development/python-modules/clifford { };
|
clifford = callPackage ../development/python-modules/clifford { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user