Commit 47709159 authored by Gaetan Lepage's avatar Gaetan Lepage
Browse files

python3Packages.gtts: relax click

parent dfc593b3
Loading
Loading
Loading
Loading
+6 −3
Original line number Diff line number Diff line
@@ -29,6 +29,9 @@ buildPythonPackage rec {

  build-system = [ setuptools ];

  pythonRelaxDeps = [
    "click"
  ];
  dependencies = [
    beautifulsoup4
    click
@@ -53,12 +56,12 @@ buildPythonPackage rec {

  pythonImportsCheck = [ "gtts" ];

  meta = with lib; {
  meta = {
    description = "Python library and CLI tool to interface with Google Translate text-to-speech API";
    mainProgram = "gtts-cli";
    homepage = "https://gtts.readthedocs.io";
    changelog = "https://gtts.readthedocs.io/en/latest/changelog.html";
    license = licenses.mit;
    maintainers = with maintainers; [ unode ];
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ unode ];
  };
}