python3Packages.databricks-sql-connector: Now builds for python312

Commit 3a30db4a28 fixed python312 for dependency thrift.
This commit is contained in:
Kristoffer K. Føllesdal 2024-08-07 16:10:08 +02:00 committed by kfollesdal
parent 4c8deffe2f
commit c5f8b109e0

View File

@ -12,7 +12,6 @@
pyarrow,
pytestCheckHook,
pythonOlder,
pythonAtLeast,
sqlalchemy,
thrift,
requests,
@ -25,9 +24,7 @@ buildPythonPackage rec {
version = "3.3.0";
format = "pyproject";
# 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";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "databricks";