databricks-sql-cli: init at 0.1.4
This commit is contained in:
parent
d240bf08af
commit
11a11704bc
2 changed files with 66 additions and 0 deletions
64
pkgs/applications/misc/databricks-sql-cli/default.nix
Normal file
64
pkgs/applications/misc/databricks-sql-cli/default.nix
Normal file
|
@ -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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -430,6 +430,8 @@ with pkgs;
|
||||||
|
|
||||||
cryptowatch-desktop = callPackage ../applications/finance/cryptowatch { };
|
cryptowatch-desktop = callPackage ../applications/finance/cryptowatch { };
|
||||||
|
|
||||||
|
databricks-sql-cli = python3Packages.callPackage ../applications/misc/databricks-sql-cli { };
|
||||||
|
|
||||||
datalad = callPackage ../applications/version-management/datalad {
|
datalad = callPackage ../applications/version-management/datalad {
|
||||||
python3 = python39; # `boto` currently broken with Python3.10
|
python3 = python39; # `boto` currently broken with Python3.10
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue