mirror of
https://github.com/tadeokondrak/vs-overlay
synced 2024-11-22 17:02:25 +01:00
getnative: 3.0.0 -> 3.0.2
This commit is contained in:
parent
8be7bc45ac
commit
7dfc27a6fd
|
@ -7,19 +7,21 @@ let
|
||||||
in
|
in
|
||||||
buildPythonApplication rec {
|
buildPythonApplication rec {
|
||||||
pname = "getnative";
|
pname = "getnative";
|
||||||
version = "3.0.0";
|
version = "3.0.2";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "Infiziert90";
|
owner = "Infiziert90";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = version;
|
# The version in setup.py is 3.0.2, but there is no tag for it
|
||||||
sha256 = "0jvvwyxlgarff2r5v2nvqmy2bw17anz4cid95gwbl3br4a2pmhzn";
|
# (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
|
# vapoursynth is not recognised during installation
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
substituteInPlace requirements.txt \
|
substituteInPlace requirements.txt \
|
||||||
--replace "VapourSynth>=45" ""
|
--replace "VapourSynth>=55" ""
|
||||||
'';
|
'';
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
|
|
Loading…
Reference in a new issue