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

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

94 lines
1.8 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
}:
2022-10-16 21:39:01 +00:00
python3.pkgs.buildPythonApplication rec {
2022-07-20 14:39:18 +00:00
pname = "dbx";
version = "0.8.8";
2022-10-16 21:39:01 +00:00
format = "setuptools";
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-nx6fz+atlnB/KxdznnZArHpyv41cuBDQauG0irq1Zyc=";
2022-07-20 14:39:18 +00:00
};
postPatch = ''
substituteInPlace setup.py \
--replace "mlflow-skinny>=1.28.0,<3.0.0" "mlflow" \
--replace "rich==12.6.0" "rich"
'';
2022-10-16 21:39:01 +00:00
propagatedBuildInputs = with python3.pkgs; [
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
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"
];
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 ];
};
}