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