fix: pyload

This commit is contained in:
2025-11-25 17:03:03 +01:00
parent 6475524d23
commit d7d3722ce7
5 changed files with 245 additions and 8 deletions

View File

@@ -0,0 +1,21 @@
{ lib, pyload-ng, fetchFromGitHub, python3Packages }:
pyload-ng.overridePythonAttrs (oldAttrs: rec {
version = "0.5.0b3.dev93+git";
src = fetchFromGitHub {
owner = "pyload";
repo = "pyload";
rev = "3115740a2210fd57b5d050cd0850a0e61ec493ed"; # [DdownloadCom] fix #4537
hash = "sha256-g1eEeNnr3Axtr+0BJzMcNQomTEX4EsUG1Jxt+huPyoc=";
};
# Add new dependencies required in newer versions
propagatedBuildInputs = (oldAttrs.propagatedBuildInputs or []) ++ (with python3Packages; [
mini-racer
packaging
pydantic
flask-wtf
defusedxml
]);
})