python310Packages.databricks-cli: enable tests

- add pythonImportsCheck
This commit is contained in:
Fabian Affolter 2022-12-11 01:11:11 +01:00 committed by GitHub
parent 23dfe1a232
commit ad109982a1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,44 +1,64 @@
{ lib
, buildPythonPackage
, fetchPypi
, click
, oauthlib
, requests
, tabulate
, six
, configparser
, pytest
, decorator
, fetchFromGitHub
, mock
, oauthlib
, pyjwt
, pytestCheckHook
, pythonOlder
, requests
, requests-mock
, six
, tabulate
}:
buildPythonPackage rec {
pname = "databricks-cli";
version = "0.17.4";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-vAxN0ILwM8tteXjKyspSYWmO/jpMcPUvmHYsONuSXOA=";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "databricks";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-srrNxiOGrU1u5shssRssr8Hwdy20U4coOAjYsT7eTSA=";
};
checkInputs = [
pytest
];
checkPhase = "pytest tests";
# tests folder is missing in PyPI
doCheck = false;
propagatedBuildInputs = [
click
oauthlib
requests
tabulate
six
configparser
oauthlib
pyjwt
requests
requests-mock
six
tabulate
];
checkInputs = [
decorator
mock
pytestCheckHook
];
disabledTestPaths = [
# Disabled due to option parsing which we don't have
"integration/dbfs/test_integration.py"
"integration/workspace/test_integration.py"
];
pythonImportsCheck = [
"databricks_cli"
];
meta = with lib; {
description = "Command line interface for Databricks";
homepage = "https://github.com/databricks/databricks-cli";
description = "A command line interface for Databricks";
changelog = "https://github.com/databricks/databricks-cli/releases/tag/${version}";
license = licenses.asl20;
maintainers = with maintainers; [ tbenst ];