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

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

132 lines
2.7 KiB
Nix
Raw Normal View History

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