22 lines
583 B
Nix
22 lines
583 B
Nix
{ 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
|
|
]);
|
|
})
|