{ lib , fetchFromGitHub , python3 }: python3.pkgs.buildPythonApplication rec { pname = "faraday-cli"; version = "2.0.2"; src = fetchFromGitHub { owner = "infobyte"; repo = pname; rev = "v${version}"; hash = "sha256-J3YlFsX/maOqWo4ILEMXzIJeQ8vr47ApGGiaBWrUCMs="; }; propagatedBuildInputs = with python3.pkgs; [ arrow click cmd2 colorama faraday-plugins jsonschema log-symbols packaging pyyaml simple-rest-client spinners tabulate termcolor validators ]; # Tests requires credentials doCheck = false; pythonImportsCheck = [ "faraday_cli" ]; meta = with lib; { description = "Command Line Interface for Faraday"; homepage = "https://github.com/infobyte/faraday-cli"; license = with licenses; [ gpl3Only ]; maintainers = with maintainers; [ fab ]; }; }