depot/third_party/nixpkgs/pkgs/development/python-modules/databricks-sql-connector/default.nix
Default email 159e378cbb Project import generated by Copybara.
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
2024-09-19 17:19:46 +03:00

79 lines
1.5 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
alembic,
lz4,
numpy,
oauthlib,
openpyxl,
pandas,
poetry-core,
pyarrow,
pytestCheckHook,
pythonOlder,
sqlalchemy,
thrift,
requests,
urllib3,
fetchpatch,
}:
buildPythonPackage rec {
pname = "databricks-sql-connector";
version = "3.3.0";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "databricks";
repo = "databricks-sql-python";
rev = "refs/tags/v${version}";
hash = "sha256-a3OeKJ3c2UCClsPMah7iJY2YvIVLfHmmBuHAx8vdXZs=";
};
patches = [
(fetchpatch {
name = "fix-pandas.patch";
url = "https://patch-diff.githubusercontent.com/raw/databricks/databricks-sql-python/pull/416.patch";
sha256 = "sha256-sNCp8xSSmKP2yNzDK4wyWC5Hoe574AeHnKTeNcIxaek=";
})
];
pythonRelaxDeps = [
"pyarrow"
];
nativeBuildInputs = [
poetry-core
];
propagatedBuildInputs = [
alembic
lz4
numpy
oauthlib
openpyxl
pandas
pyarrow
sqlalchemy
thrift
requests
urllib3
];
nativeCheckInputs = [ pytestCheckHook ];
pytestFlagsArray = [ "tests/unit" ];
pythonImportsCheck = [ "databricks" ];
meta = with lib; {
description = "Databricks SQL Connector for Python";
homepage = "https://docs.databricks.com/dev-tools/python-sql-connector.html";
changelog = "https://github.com/databricks/databricks-sql-python/blob/v${version}/CHANGELOG.md";
license = licenses.asl20;
maintainers = with maintainers; [ harvidsen ];
};
}