11 buildPythonPackage rec {
12 pname = "databricks-sql-connector";
16 src = fetchFromGitHub {
18 repo = "databricks-sql-python";
20 sha256 = "sha256-Qpdyn6z1mbO4bzyUZ2eYdd9pfIkIP/Aj4YgNXaYwxpE=";
24 substituteInPlace pyproject.toml \
25 --replace 'thrift = "^0.13.0"' 'thrift = ">=0.13.0,<1.0.0"'
32 propagatedBuildInputs = [
42 pytestFlagsArray = [ "tests/unit" ];
45 description = "Databricks SQL Connector for Python";
46 homepage = "https://docs.databricks.com/dev-tools/python-sql-connector.html";
47 license = licenses.asl20;
48 maintainers = with maintainers; [ harvidsen ];