From 7dfc27a6fd133b45c2535bf40114df155667d363 Mon Sep 17 00:00:00 2001 From: Simon Bruder Date: Fri, 15 Oct 2021 19:03:20 +0200 Subject: [PATCH] getnative: 3.0.0 -> 3.0.2 --- tools/getnative/default.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/tools/getnative/default.nix b/tools/getnative/default.nix index 248ae37..583787e 100644 --- a/tools/getnative/default.nix +++ b/tools/getnative/default.nix @@ -7,19 +7,21 @@ let in buildPythonApplication rec { pname = "getnative"; - version = "3.0.0"; + version = "3.0.2"; src = fetchFromGitHub { owner = "Infiziert90"; repo = pname; - rev = version; - sha256 = "0jvvwyxlgarff2r5v2nvqmy2bw17anz4cid95gwbl3br4a2pmhzn"; + # The version in setup.py is 3.0.2, but there is no tag for it + # (the tag that GitHub shows as 3.0.2 actually is 3.0.0) + rev = "2ae9037adca5ac1f5d747bb32f4dbea30631dc33"; + sha256 = "sha256-h3M/eRDwJKaPRedISxW6lzBw5UT20hTLhqmRa4HzQuw="; }; # vapoursynth is not recognised during installation postPatch = '' substituteInPlace requirements.txt \ - --replace "VapourSynth>=45" "" + --replace "VapourSynth>=55" "" ''; propagatedBuildInputs = [