Commit db0c2f5d authored by Stanisław Pitucha's avatar Stanisław Pitucha
Browse files

archivebox: 0.6.2 -> 0.7.1

parent aa382343
Loading
Loading
Loading
Loading
+40 −9
Original line number Diff line number Diff line
{ lib
, stdenv
, python3
, fetchFromGitHub
, fetchPypi
, curl
, wget
, git
, ripgrep
, postlight-parser
, readability-extractor
, chromium
, yt-dlp
}:

let
@@ -34,6 +43,8 @@ let
          rev = "e43f383dae3a35237e42f6acfe1207a8e7e7bdf5";
          hash = "sha256-NAMa78KhAuoJfp0Cb0Codz84sRfRQ1JhSLNYRI4GBPM=";
        };
        # possibly a real issue, but that version is not supported anymore
        disabledTests = [ "test_should_highlight_bash_syntax_without_name" ];
      });
    };
  };
@@ -41,31 +52,51 @@ in

python.pkgs.buildPythonApplication rec {
  pname = "archivebox";
  version = "0.6.2";
  version = "0.7.2";
  pyproject = true;

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-zHty7lTra6yab9d0q3EqsPG3F+lrnZL6PjQAbL1A2NY=";
    hash = "sha256-hdBUEX2tOWN2b11w6aG3x7MP7KQTj4Rwc2w8XvABGf4=";
  };

  nativeBuildInputs = with python.pkgs; [
    pdm-backend
  ];

  propagatedBuildInputs = with python.pkgs; [
    requests
    mypy-extensions
    croniter
    dateparser
    django
    django-extensions
    dateparser
    youtube-dl
    ipython
    mypy-extensions
    python-crontab
    croniter
    requests
    w3lib
    ipython
    yt-dlp
  ];

  makeWrapperArgs = [
    "--set USE_NODE True" # used through dependencies, not needed explicitly
    "--set READABILITY_BINARY ${lib.meta.getExe readability-extractor}"
    "--set MERCURY_BINARY ${lib.meta.getExe postlight-parser}"
    "--set CURL_BINARY ${lib.meta.getExe curl}"
    "--set RIPGREP_BINARY ${lib.meta.getExe ripgrep}"
    "--set WGET_BINARY ${lib.meta.getExe wget}"
    "--set GIT_BINARY ${lib.meta.getExe git}"
    "--set YOUTUBEDL_BINARY ${lib.meta.getExe yt-dlp}"
  ] ++ (if (lib.meta.availableOn stdenv.hostPlatform chromium) then [
    "--set CHROME_BINARY ${chromium}/bin/chromium-browser"
  ] else [
    "--set-default USE_CHROME False"
  ]);

  meta = with lib; {
    description = "Open source self-hosted web archiving";
    homepage = "https://archivebox.io";
    license = licenses.mit;
    maintainers = with maintainers; [ siraben ];
    maintainers = with maintainers; [ siraben viraptor ];
    platforms = platforms.unix;
  };
}