nixpkgs/pkgs/applications/misc/dbx/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

119 lines
2.7 KiB
Nix
Raw Permalink Normal View History

2024-04-05 12:44:16 +02:00
{
lib,
fetchFromGitHub,
git,
python3,
2022-07-20 16:39:18 +02:00
}:
2024-04-05 12:44:16 +02:00
let
python = python3.override { packageOverrides = self: super: { pydantic = super.pydantic_1; }; };
in
python.pkgs.buildPythonApplication rec {
2022-07-20 16:39:18 +02:00
pname = "dbx";
version = "0.8.18";
2024-04-05 12:42:05 +02:00
pyproject = true;
2022-07-20 16:39:18 +02:00
src = fetchFromGitHub {
owner = "databrickslabs";
repo = "dbx";
2023-02-27 10:12:58 +01:00
rev = "refs/tags/v${version}";
hash = "sha256-5qjEABNTSUD9I2uAn49HQ4n+gbAcmfnqS4Z2M9MvFXQ=";
2022-07-20 16:39:18 +02:00
};
2023-06-11 00:31:40 +02:00
pythonRelaxDeps = [
2024-04-05 12:42:05 +02:00
"cryptography"
"databricks-cli"
2023-06-11 00:31:40 +02:00
"rich"
"typer"
];
2024-04-05 12:44:16 +02:00
pythonRemoveDeps = [ "mlflow-skinny" ];
2023-06-11 00:31:40 +02:00
2024-04-05 12:44:16 +02:00
build-system = with python.pkgs; [ setuptools ];
2024-04-05 12:42:05 +02:00
2024-04-05 12:44:16 +02:00
nativeBuildInputs = with python.pkgs; [ pythonRelaxDepsHook ];
2024-04-05 12:44:16 +02:00
propagatedBuildInputs =
with python.pkgs;
[
aiohttp
click
cookiecutter
cryptography
databricks-cli
jinja2
mlflow
pathspec
pydantic
pyyaml
requests
retry
rich
tenacity
typer
watchdog
]
++ typer.optional-dependencies.all;
2022-07-20 16:39:18 +02:00
passthru.optional-dependencies = with python3.pkgs; {
2024-04-05 12:44:16 +02:00
aws = [ boto3 ];
azure = [
azure-storage-blob
azure-identity
];
2024-04-05 12:44:16 +02:00
gcp = [ google-cloud-storage ];
};
2024-04-05 12:44:16 +02:00
nativeCheckInputs =
[ git ]
++ (with python3.pkgs; [
pytest-asyncio
pytest-mock
pytest-timeout
pytestCheckHook
]);
2022-10-16 23:39:01 +02:00
2022-07-31 11:10:14 +02:00
preCheck = ''
2022-10-16 23:39:01 +02:00
export HOME=$(mktemp -d)
export PATH="$PATH:$out/bin"
2022-07-31 11:10:14 +02:00
'';
2024-04-05 12:44:16 +02:00
pytestFlagsArray = [ "tests/unit" ];
2022-10-16 23:39:01 +02:00
2022-07-20 16:39:18 +02:00
disabledTests = [
2022-10-16 23:39:01 +02:00
# Fails because of dbfs CLI wrong call
2022-07-20 16:39:18 +02:00
"test_dbfs_unknown_user"
"test_dbfs_no_root"
2022-10-16 23:39:01 +02:00
# Requires pylint, prospector, pydocstyle
"test_python_basic_sanity_check"
];
2024-04-05 12:42:05 +02:00
disabledTestPaths = [
"tests/unit/api/"
"tests/unit/api/test_build.py"
"tests/unit/api/test_destroyer.py"
"tests/unit/api/test_jinja.py"
"tests/unit/commands/test_configure.py"
"tests/unit/commands/test_deploy_jinja_variables_file.py"
"tests/unit/commands/test_deploy.py"
"tests/unit/commands/test_destroy.py"
"tests/unit/commands/test_execute.py"
"tests/unit/commands/test_help.py"
"tests/unit/commands/test_launch.py"
"tests/unit/models/test_deployment.py"
"tests/unit/models/test_destroyer.py"
"tests/unit/models/test_task.py"
"tests/unit/sync/test_commands.py"
"tests/unit/utils/test_common.py"
];
2024-04-05 12:44:16 +02:00
pythonImportsCheck = [ "dbx" ];
2022-07-20 16:39:18 +02:00
meta = with lib; {
description = "CLI tool for advanced Databricks jobs management";
2022-10-16 23:39:01 +02:00
homepage = "https://github.com/databrickslabs/dbx";
2023-02-27 10:12:58 +01:00
changelog = "https://github.com/databrickslabs/dbx/blob/v${version}/CHANGELOG.md";
2022-07-20 16:39:18 +02:00
license = licenses.databricks-dbx;
maintainers = with maintainers; [ GuillaumeDesforges ];
};
}