{ lib, buildPythonPackage, fetchPypi , click , requests , tabulate , six , configparser , pytest }: buildPythonPackage rec { pname = "databricks-cli"; version = "0.15.0"; src = fetchPypi { inherit pname version; sha256 = "4d0fbe3cb9c86d7342d45357f1db2e01011c507659f21b7a8144709cf8fa9f96"; }; checkInputs = [ pytest ]; checkPhase = "pytest tests"; # tests folder is missing in PyPI doCheck = false; propagatedBuildInputs = [ click requests tabulate six configparser ]; meta = with lib; { homepage = "https://github.com/databricks/databricks-cli"; description = "A command line interface for Databricks"; license = licenses.asl20; maintainers = with maintainers; [ tbenst ]; }; }