pythonPackages.crate: disable failing test on darwin

This commit is contained in:
Sandro Jäckel 2021-03-06 18:39:45 +01:00
parent a54f2438e4
commit 901206a04e
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5

View File

@ -6,6 +6,7 @@
, isPy3k , isPy3k
, sqlalchemy , sqlalchemy
, pytestCheckHook , pytestCheckHook
, stdenv
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -28,6 +29,8 @@ buildPythonPackage rec {
pytestCheckHook pytestCheckHook
]; ];
disabledTestPaths = lib.optionals stdenv.isDarwin [ "src/crate/client/test_http.py" ];
meta = with lib; { meta = with lib; {
homepage = "https://github.com/crate/crate-python"; homepage = "https://github.com/crate/crate-python";
description = "A Python client library for CrateDB"; description = "A Python client library for CrateDB";