Unverified Commit 81f1667e authored by Wolfgang Walther's avatar Wolfgang Walther Committed by GitHub
Browse files

python3Packages.imap-tools: 1.10.0 -> 1.11.0 (#422413)

parents 1f0c218b a3e2680f
Loading
Loading
Loading
Loading
+11 −0
Original line number Diff line number Diff line
@@ -40,6 +40,17 @@ let
    packageOverrides = final: prev: {
      django = prev.django_5_1;

      # TODO remove when paperless-ngx is updated past 2.17.1
      imap-tools = prev.imap-tools.overridePythonAttrs {
        version = "1.10.0";
        src = fetchFromGitHub {
          owner = "ikvk";
          repo = "imap_tools";
          tag = "v1.10.0";
          hash = "sha256-lan12cHkoxCKadgyFey4ShcnwFg3Gl/VqKWlYAkvF3Y=";
        };
      };

      # tesseract5 may be overwritten in the paperless module and we need to propagate that to make the closure reduction effective
      ocrmypdf = prev.ocrmypdf.override { tesseract = tesseract5; };
    };
+2 −2
Original line number Diff line number Diff line
@@ -8,14 +8,14 @@

buildPythonPackage rec {
  pname = "imap-tools";
  version = "1.10.0";
  version = "1.11.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "ikvk";
    repo = "imap_tools";
    tag = "v${version}";
    hash = "sha256-lan12cHkoxCKadgyFey4ShcnwFg3Gl/VqKWlYAkvF3Y=";
    hash = "sha256-8oPiCFoJ0mV7ZnteM9lufIbxwA/7hV91959weEx/e30=";
  };

  build-system = [ setuptools ];