-
-
Notifications
You must be signed in to change notification settings - Fork 14.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #189855 from harvidsen/python-databricks-sql-conne…
…ctor-init
- Loading branch information
Showing
5 changed files
with
124 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
{ lib | ||
, buildPythonApplication | ||
, fetchFromGitHub | ||
, fetchpatch | ||
, poetry-core | ||
, pandas | ||
, prompt-toolkit | ||
, databricks-sql-connector | ||
, pygments | ||
, configobj | ||
, sqlparse | ||
, cli-helpers | ||
, click | ||
, pytestCheckHook | ||
}: | ||
|
||
buildPythonApplication rec { | ||
pname = "databricks-sql-cli"; | ||
version = "0.1.4"; | ||
format = "pyproject"; | ||
|
||
src = fetchFromGitHub { | ||
owner = "databricks"; | ||
repo = "databricks-sql-cli"; | ||
rev = "v${version}"; | ||
sha256 = "sha256-gr7LJfnvIu2Jf1XgILqfZoi8CbXeQyq0g1wLEBa5TPM="; | ||
}; | ||
|
||
patches = [ | ||
# https://github.com/databricks/databricks-sql-cli/pull/38 | ||
(fetchpatch { | ||
url = "https://github.com/databricks/databricks-sql-cli/commit/fc294e00819b6966f1605e5c1ce654473510aefe.patch"; | ||
sha256 = "sha256-QVrb7mD0fVbHrbrDywI6tsFNYM19x74LY8rhqqC8szE="; | ||
}) | ||
]; | ||
|
||
postPatch = '' | ||
substituteInPlace pyproject.toml \ | ||
--replace 'python = ">=3.7.1,<4.0"' 'python = ">=3.8,<4.0"' \ | ||
--replace 'pandas = "1.3.4"' 'pandas = "~1.4"' | ||
''; | ||
|
||
nativeBuildInputs = [ poetry-core ]; | ||
|
||
propagatedBuildInputs = [ | ||
prompt-toolkit | ||
pandas | ||
databricks-sql-connector | ||
pygments | ||
configobj | ||
sqlparse | ||
cli-helpers | ||
click | ||
]; | ||
|
||
checkInputs = [ pytestCheckHook ]; | ||
|
||
meta = with lib; { | ||
description = "CLI for querying Databricks SQL"; | ||
homepage = "https://github.com/databricks/databricks-sql-cli"; | ||
license = licenses.databricks; | ||
maintainers = with maintainers; [ kfollesdal ]; | ||
}; | ||
} |
50 changes: 50 additions & 0 deletions
50
pkgs/development/python-modules/databricks-sql-connector/default.nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
{ lib | ||
, buildPythonPackage | ||
, fetchFromGitHub | ||
, thrift | ||
, pandas | ||
, pyarrow | ||
, poetry-core | ||
, pytestCheckHook | ||
}: | ||
|
||
buildPythonPackage rec { | ||
pname = "databricks-sql-connector"; | ||
version = "2.0.5"; | ||
format = "pyproject"; | ||
|
||
src = fetchFromGitHub { | ||
owner = "databricks"; | ||
repo = "databricks-sql-python"; | ||
rev = "v${version}"; | ||
sha256 = "sha256-Qpdyn6z1mbO4bzyUZ2eYdd9pfIkIP/Aj4YgNXaYwxpE="; | ||
}; | ||
|
||
postPatch = '' | ||
substituteInPlace pyproject.toml \ | ||
--replace 'thrift = "^0.13.0"' 'thrift = ">=0.13.0,<1.0.0"' | ||
''; | ||
|
||
nativeBuildInputs = [ | ||
poetry-core | ||
]; | ||
|
||
propagatedBuildInputs = [ | ||
thrift | ||
pandas | ||
pyarrow | ||
]; | ||
|
||
checkInputs = [ | ||
pytestCheckHook | ||
]; | ||
|
||
pytestFlagsArray = [ "tests/unit" ]; | ||
|
||
meta = with lib; { | ||
description = "Databricks SQL Connector for Python"; | ||
homepage = https://docs.databricks.com/dev-tools/python-sql-connector.html; | ||
license = licenses.asl20; | ||
maintainers = with maintainers; [ harvidsen ]; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters