paperless-ngx: 2.15.1 -> 2.15.2 (#398915)

authored by Leona Maroni and committed by GitHub ace384ea be8e7c0a

+2 -11
+2 -11
pkgs/by-name/pa/paperless-ngx/package.nix
··· 27 27 xorg, 28 28 }: 29 29 let 30 - version = "2.15.1"; 30 + version = "2.15.2"; 31 31 32 32 src = fetchFromGitHub { 33 33 owner = "paperless-ngx"; 34 34 repo = "paperless-ngx"; 35 35 tag = "v${version}"; 36 - hash = "sha256-vICkRfVxzQlqhSBCieVNSGeXb6FCOx0qOnInKMy6Lhg="; 36 + hash = "sha256-3IGXjMVMSbpcdwEvJcMbFuQI9GYy1TY9NWAvum14UK4="; 37 37 }; 38 38 39 - # subpath installation is broken with uvicorn >= 0.26 40 - # https://github.com/NixOS/nixpkgs/issues/298719 41 - # https://github.com/paperless-ngx/paperless-ngx/issues/5494 42 39 python = python3.override { 43 40 self = python; 44 41 packageOverrides = final: prev: { 45 42 django = prev.django_5; 46 - 47 - django-extensions = prev.django-extensions.overridePythonAttrs (_: { 48 - # fails with: TypeError: 'class Meta' got invalid attribute(s): index_together 49 - # probably because of django_5 but it is the latest version available and used like that in paperless-ngx 50 - doCheck = false; 51 - }); 52 43 53 44 # tesseract5 may be overwritten in the paperless module and we need to propagate that to make the closure reduction effective 54 45 ocrmypdf = prev.ocrmypdf.override { tesseract = tesseract5; };