pythonPackages.hydrus: 438 -> 441

This commit is contained in:
mingmingrr 2021-06-01 12:42:04 -04:00
parent 0e4294fd3e
commit 03956aa12b

View File

@ -3,20 +3,21 @@
, xz
, wrapQtAppsHook
, miniupnpc_2
, enableSwftools ? false
, swftools
, pythonPackages
}:
pythonPackages.buildPythonPackage rec {
pname = "hydrus";
version = "438";
version = "441";
format = "other";
src = fetchFromGitHub {
owner = "hydrusnetwork";
repo = "hydrus";
rev = "v${version}";
sha256 = "sha256-iBJkbVUlsjt26SbDe92eIrWKQwWBhkjjeLM14Pm/obc=";
sha256 = "13h4qcz0iqba4mwyvgmdqh99jy22x7kw20f3g43b5aq3qyk9ca2h";
};
nativeBuildInputs = [
@ -79,7 +80,7 @@ pythonPackages.buildPythonPackage rec {
postPatch = ''
sed 's;os\.path\.join(\sHC\.BIN_DIR,.*;"${miniupnpc_2}/bin/upnpc";' \
-i ./hydrus/core/networking/HydrusNATPunch.py
'' + lib.optionalString enableSwftools ''
sed 's;os\.path\.join(\sHC\.BIN_DIR,.*;"${swftools}/bin/swfrender";' \
-i ./hydrus/core/HydrusFlashHandling.py
'';