2022-11-12T05:59:48 flexget 3.4.2 -> 3.5.5 https://github.com/flexget/flexget/releases 2022-11-12T05:59:50 attrpath: flexget 2022-11-12T05:59:50 Checking auto update branch... 2022-11-12T05:59:54 [version] 2022-11-12T05:59:54 [version] skipping because derivation has updateScript 2022-11-12T05:59:54 [rustCrateVersion] 2022-11-12T05:59:54 [rustCrateVersion] No cargoSha256 found 2022-11-12T05:59:54 [golangModuleVersion] 2022-11-12T05:59:54 [golangModuleVersion] Not a buildGoModule package with vendorSha256 2022-11-12T05:59:54 [updateScript] 2022-11-12T05:59:57 [updateScript] Success 2022-11-12T05:59:57 [updateScript] this derivation will be built: /nix/store/vxl5sgdp1wk8q3jawd5rj285ijcicjrj-packages.json.drv building '/nix/store/vxl5sgdp1wk8q3jawd5rj285ijcicjrj-packages.json.drv'... Going to be running update for following packages: - flexget-3.4.2 Press Enter key to continue... Running update for: - flexget-3.4.2: UPDATING ... - flexget-3.4.2: DONE. Packages updated! 2022-11-12T05:59:57 2022-11-12T05:59:57 [quotedUrls] 2022-11-12T05:59:57 [quotedUrls] nothing found to replace 2022-11-12T05:59:58 Diff after rewrites: diff --git a/pkgs/applications/networking/flexget/default.nix b/pkgs/applications/networking/flexget/default.nix index a469287ed4d..06015495d3f 100644 --- a/pkgs/applications/networking/flexget/default.nix +++ b/pkgs/applications/networking/flexget/default.nix @@ -5,14 +5,14 @@ python3Packages.buildPythonApplication rec { pname = "flexget"; - version = "3.4.2"; + version = "3.5.5"; # Fetch from GitHub in order to use `requirements.in` src = fetchFromGitHub { owner = "flexget"; repo = "flexget"; rev = "refs/tags/v${version}"; - hash = "sha256-mq1xk27mIB1iiCphwMZRVqlIRwlYHihXSowQ9GAkR1U="; + hash = "sha256-jyMjcFQXv9wGcvBU+Ki970HAgSQD57Zx3G9gf/mj25A="; }; postPatch = '' 2022-11-12T06:01:26 Old version 3.4.2" not present in master derivation file with contents: { lib , python3Packages , fetchFromGitHub }: python3Packages.buildPythonApplication rec { pname = "flexget"; version = "3.5.4"; format = "pyproject"; # Fetch from GitHub in order to use `requirements.in` src = fetchFromGitHub { owner = "flexget"; repo = "flexget"; rev = "refs/tags/v${version}"; hash = "sha256-KANnZLNNDEo8pVWumFRR/Y67F1eS2JeDeX33nQ5YWlk="; }; postPatch = '' # remove dependency constraints but keep environment constraints sed 's/[~<>=][^;]*//' -i requirements.txt # "zxcvbn-python" was renamed to "zxcvbn", and we don't have the former in # nixpkgs. See: https://github.com/NixOS/nixpkgs/issues/62110 substituteInPlace requirements.txt --replace "zxcvbn-python" "zxcvbn" ''; # ~400 failures doCheck = false; propagatedBuildInputs = with python3Packages; [ # See https://github.com/Flexget/Flexget/blob/master/requirements.txt APScheduler beautifulsoup4 click colorama feedparser guessit html5lib jinja2 jsonschema loguru more-itertools packaging psutil pynzb PyRSS2Gen python-dateutil pyyaml rebulk requests rich rpyc sqlalchemy typing-extensions # WebUI requirements cherrypy flask-compress flask-cors flask-login flask-restful flask-restx flask pyparsing werkzeug zxcvbn # Plugins requirements transmission-rpc ]; meta = with lib; { homepage = "https://flexget.com/"; description = "Multipurpose automation tool for all of your media"; license = licenses.mit; maintainers = with maintainers; [ marsam ]; }; }