72 lines
1.3 KiB
Nix
72 lines
1.3 KiB
Nix
|
{
|
||
|
lib,
|
||
|
buildPythonPackage,
|
||
|
fetchFromGitHub,
|
||
|
alembic,
|
||
|
lz4,
|
||
|
numpy,
|
||
|
oauthlib,
|
||
|
openpyxl,
|
||
|
pandas,
|
||
|
poetry-core,
|
||
|
pyarrow,
|
||
|
pytestCheckHook,
|
||
|
pythonOlder,
|
||
|
sqlalchemy,
|
||
|
thrift,
|
||
|
requests,
|
||
|
urllib3,
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "databricks-sql-connector";
|
||
|
version = "3.4.0";
|
||
|
format = "pyproject";
|
||
|
|
||
|
disabled = pythonOlder "3.7";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "databricks";
|
||
|
repo = "databricks-sql-python";
|
||
|
rev = "refs/tags/v${version}";
|
||
|
hash = "sha256-8q5qWN+i2mGbzXvkop/G6mjZegzZ/6kr1Fl7FaHwLYA=";
|
||
|
};
|
||
|
|
||
|
pythonRelaxDeps = [
|
||
|
"pyarrow"
|
||
|
"thrift"
|
||
|
];
|
||
|
|
||
|
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 ];
|
||
|
};
|
||
|
}
|