Skip to content

Commit d8c7281

Browse files
mealie: 2.6.0 -> 2.7.1 (NixOS#387327)
2 parents e67d838 + 034a3c9 commit d8c7281

File tree

2 files changed

+8
-22
lines changed

2 files changed

+8
-22
lines changed

pkgs/by-name/me/mealie/0000_openai_1.63.0.patch

-13
This file was deleted.

pkgs/by-name/me/mealie/package.nix

+8-9
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,16 @@
77
nixosTests,
88
python3Packages,
99
writeShellScript,
10+
nix-update-script,
1011
}:
1112

1213
let
13-
version = "2.6.0";
14+
version = "2.7.1";
1415
src = fetchFromGitHub {
1516
owner = "mealie-recipes";
1617
repo = "mealie";
1718
tag = "v${version}";
18-
hash = "sha256-txkHCQ/xTakPXXFki161jNOKwAH9p9z1hCNEEkbqQtM=";
19+
hash = "sha256-nN8AuSzxHjIDKc8rGN+O2/vlzkH/A5LAr4aoAlOTLlk=";
1920
};
2021

2122
frontend = callPackage (import ./mealie-frontend.nix src version) { };
@@ -55,11 +56,6 @@ pythonpkgs.buildPythonApplication rec {
5556

5657
pythonRelaxDeps = true;
5758

58-
patches = [
59-
# compatibility with openai 1.63.0
60-
./0000_openai_1.63.0.patch
61-
];
62-
6359
dependencies = with pythonpkgs; [
6460
aiofiles
6561
alembic
@@ -141,8 +137,11 @@ pythonpkgs.buildPythonApplication rec {
141137
"tests/unit_tests/test_security.py"
142138
];
143139

144-
passthru.tests = {
145-
inherit (nixosTests) mealie;
140+
passthru = {
141+
updateScript = nix-update-script { };
142+
tests = {
143+
inherit (nixosTests) mealie;
144+
};
146145
};
147146

148147
meta = with lib; {

0 commit comments

Comments
 (0)