{ lib, buildPythonPackage, fetchPypi , click , requests , tabulate , six , configparser , pytest }: buildPythonPackage rec { pname = "databricks-cli"; version = "0.16.2"; src = fetchPypi { inherit pname version; sha256 = "3e9a65a19a589b795ebbd9b3b16a8e470d612d57d6216ae44a9c7a735e4080e6"; }; 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 ]; }; }