42 lines
767 B
Nix
42 lines
767 B
Nix
|
{ stdenv, buildPythonPackage, fetchPypi
|
||
|
, click
|
||
|
, requests
|
||
|
, tabulate
|
||
|
, six
|
||
|
, configparser
|
||
|
, pytest
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "databricks-cli";
|
||
|
version = "0.9.1";
|
||
|
|
||
|
src = fetchPypi {
|
||
|
inherit pname version;
|
||
|
sha256 = "1ebf123b5567c06b7583688077120ead075ca06938b9995d4acafa97863ed8ff";
|
||
|
};
|
||
|
|
||
|
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 ];
|
||
|
};
|
||
|
}
|