Skip to content

Commit

Permalink
python312Packages.vdf: add patch to support appinfo.vdf v29
Browse files Browse the repository at this point in the history
  • Loading branch information
kira-bruneau committed Sep 19, 2024
1 parent 78fdf43 commit 1c0e78c
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions pkgs/development/python-modules/vdf/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
lib,
buildPythonPackage,
fetchFromGitHub,
fetchpatch2,
mock,
pytestCheckHook,
}:
Expand All @@ -18,6 +19,14 @@ buildPythonPackage rec {
hash = "sha256-6ozglzZZNKDtADkHwxX2Zsnkh6BE8WbcRcC9HkTTgPU=";
};

patches = [
# Support appinfo.vdf v29 (required by protontricks 1.12.0)
(fetchpatch2 {
url = "https://github.com/Matoking/vdf/commit/981cad270c2558aeb8eccaf42cfcf9fabbbed199.patch";
hash = "sha256-kLAbbB0WHjxq4rokLoGTPx43BU44EshteR59Ey9JnXo=";
})
];

nativeCheckInputs = [
mock
pytestCheckHook
Expand Down

0 comments on commit 1c0e78c

Please sign in to comment.