Robert Schütz
2025-10-30 11:28:46 -07:00
parent aa4df369a2
commit 738dcf167d
3 changed files with 9 additions and 4 deletions

View File

@@ -12,7 +12,7 @@ let
in
stdenv.mkDerivation rec {
pname = "immich-cli";
version = "2.2.97";
version = "2.2.99";
inherit (immich) src pnpmDeps;
postPatch = ''

View File

@@ -22,6 +22,10 @@ python.pkgs.buildPythonApplication rec {
"pydantic-settings"
];
pythonRemoveDeps = [
"setuptools"
];
build-system = with python.pkgs; [
hatchling
cython
@@ -45,6 +49,7 @@ python.pkgs.buildPythonApplication rec {
gunicorn
huggingface-hub
tokenizers
rapidocr
]
++ uvicorn.optional-dependencies.standard;

View File

@@ -34,7 +34,7 @@
}:
let
pnpm = pnpm_10;
version = "2.1.0";
version = "2.2.1";
esbuild' = buildPackages.esbuild.override {
buildGoModule =
@@ -108,14 +108,14 @@ let
owner = "immich-app";
repo = "immich";
tag = "v${version}";
hash = "sha256-xbOzTJKutuR5/oRBUyXjZ4FWAmDnWO+nS7dQcNNRHlE=";
hash = "sha256-PBhUTDnZtl7Ri9thSAXuazpcmpWEUNn7BXLix+AuaE8=";
};
pnpmDeps = pnpm.fetchDeps {
pname = "immich";
inherit version src;
fetcherVersion = 2;
hash = "sha256-JqI7te2M88CVfvqEOIggGn64Ue0rkrMlC6HvSRW1CU0=";
hash = "sha256-igkO0ID0/9uPtFAXL2v5bcFbCpZK2lcYEctWBKtFKdU=";
};
web = stdenv.mkDerivation {