Unverified Commit d361da6b authored by Mario Rodas's avatar Mario Rodas Committed by GitHub
Browse files

Merge pull request #224885 from delroth/flexget-transmission-rpc

flexget: pin transmission-rpc version to fix compatibility issue
parents 01ff6e24 12a6b43b
Loading
Loading
Loading
Loading
+12 −0
Original line number Diff line number Diff line
@@ -14,6 +14,18 @@ let
          hash = "sha256-lfwC9/wfMZmqpHqKdXQ3E0z2GOnZlMhO/9U/Uww4WG8=";
        };
      });

      # Flexget's transmission plugin is not currently compatible with the 4.x
      # branch for transmission-rpc.
      transmission-rpc = super.transmission-rpc.overridePythonAttrs (old: rec {
        version = "3.4.2";
        src = fetchFromGitHub {
          owner = "Trim21";
          repo = "transmission-rpc";
          rev = "refs/tags/v${version}";
          hash = "sha256-7XbL6plIPZHQ/0Z+7bvtj8hqkh4klFyIV73DnrUAkps=";
        };
      });
    };
  };
in