summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/clickhouse-driver
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2021-05-24 09:55:24 -0500
committerRobin Gloster <mail@glob.in>2021-05-24 09:55:24 -0500
commit4bc5fbef9d159e143fb7e2c3231932e6e76f667c (patch)
treee2198f5c552e0667d838b8ec764ddb3a4d8f6dec /pkgs/development/python-modules/clickhouse-driver
parentjq: fix build with structured-attrs on darwin (diff)
parentMerge pull request #123802 from superherointj/package-virtmanager-bugfix (diff)
downloadnixpkgs-origin/structured-attrs.tar.gz
Merge remote-tracking branch 'upstream/master' into structured-attrsorigin/structured-attrs
Diffstat (limited to 'pkgs/development/python-modules/clickhouse-driver')
-rw-r--r--pkgs/development/python-modules/clickhouse-driver/default.nix36
1 files changed, 31 insertions, 5 deletions
diff --git a/pkgs/development/python-modules/clickhouse-driver/default.nix b/pkgs/development/python-modules/clickhouse-driver/default.nix
index a1addcfc97ab..9a4c0f0f92be 100644
--- a/pkgs/development/python-modules/clickhouse-driver/default.nix
+++ b/pkgs/development/python-modules/clickhouse-driver/default.nix
@@ -1,6 +1,6 @@
{ lib
, buildPythonPackage
-, fetchPypi
+, fetchFromGitHub
, setuptools
, pytz
, tzlocal
@@ -10,15 +10,20 @@
, freezegun
, mock
, nose
+, pytestCheckHook
+, pytest-xdist
}:
buildPythonPackage rec {
pname = "clickhouse-driver";
version = "0.2.0";
- src = fetchPypi {
- inherit pname version;
- sha256 = "62d37f93872d5a13eb6b0d52bab2b593ed0e14cf9200949aa2d02f9801064c0f";
+ # pypi source doesn't contain tests
+ src = fetchFromGitHub {
+ owner = "mymarilyn";
+ repo = "clickhouse-driver";
+ rev = "96b7ba448c63ca2670cc9aa70d4a0e08826fb650";
+ sha256 = "sha256-HFKUxJOlBCVlu7Ia8heGpwX6+HdKuwSy92s3v+GKGwE=";
};
propagatedBuildInputs = [
@@ -34,9 +39,30 @@ buildPythonPackage rec {
freezegun
mock
nose
+ pytest-xdist
+ pytestCheckHook
];
- doCheck = true;
+ postPatch = ''
+ substituteInPlace setup.py \
+ --replace "lz4<=3.0.1" "lz4<=4"
+ '';
+
+ # remove source to prevent pytest testing source instead of the build artifacts
+ # (the source doesn't contain the extension modules)
+ preCheck = ''
+ rm -rf clickhouse_driver
+ '';
+
+ # some test in test_buffered_reader.py doesn't seem to return
+ disabledTestPaths = [ "tests/test_buffered_reader.py" ];
+
+ pytestFlagsArray = [ "-n" "$NIX_BUILD_CORES" ];
+
+ # most tests require `clickhouse`
+ # TODO: enable tests after `clickhouse` unbroken
+ doCheck = false;
+
pythonImportsCheck = [ "clickhouse_driver" ];
meta = with lib; {