Unverified Commit af985b42 authored by dotlambda's avatar dotlambda Committed by GitHub
Browse files

animdl: allow click >= 8.2.0, enable across linux and darwin (#454624)

parents 9275a246 68c01a5d
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -21,6 +21,7 @@ python3Packages.buildPythonApplication {
  ];

  pythonRelaxDeps = [
    "click"
    "cssselect"
    "httpx"
    "lxml"
@@ -55,12 +56,11 @@ python3Packages.buildPythonApplication {

  doCheck = true;

  meta = with lib; {
  meta = {
    description = "Highly efficient, powerful and fast anime scraper";
    homepage = "https://github.com/justfoolingaround/animdl";
    license = licenses.gpl3Only;
    license = lib.licenses.gpl3Only;
    mainProgram = "animdl";
    maintainers = with maintainers; [ passivelemon ];
    platforms = [ "x86_64-linux" ];
    maintainers = with lib.maintainers; [ passivelemon ];
  };
}