Skip to content

Commit

Permalink
pyhton3Packages.databricks-sql-connector: Do not work for python 3.12…
Browse files Browse the repository at this point in the history
… at the moment

Depends on thrift that do not support python 3.12 at the moment.

See PR NixOS#328415
  • Loading branch information
kfollesdal committed Jul 22, 2024
1 parent b87a8f4 commit 730ea09
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
pyarrow,
pytestCheckHook,
pythonOlder,
pythonAtLeast,
sqlalchemy,
thrift,
requests,
Expand All @@ -24,7 +25,9 @@ buildPythonPackage rec {
version = "3.3.0";
format = "pyproject";

disabled = pythonOlder "3.7";
# Depends on thrift that at the moment do not work in Python 3.12
# see PR 328415 fix this.
disabled = pythonOlder "3.7" || pythonAtLeast "3.12";

src = fetchFromGitHub {
owner = "databricks";
Expand Down

0 comments on commit 730ea09

Please sign in to comment.