Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

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

flexget: pin transmission-rpc version to fix compatibility issue

authored by Mario Rodas and committed by GitHub d361da6b 01ff6e24

+12
+12
pkgs/applications/networking/flexget/default.nix
··· 14 hash = "sha256-lfwC9/wfMZmqpHqKdXQ3E0z2GOnZlMhO/9U/Uww4WG8="; 15 }; 16 }); 17 }; 18 }; 19 in
··· 14 hash = "sha256-lfwC9/wfMZmqpHqKdXQ3E0z2GOnZlMhO/9U/Uww4WG8="; 15 }; 16 }); 17 + 18 + # Flexget's transmission plugin is not currently compatible with the 4.x 19 + # branch for transmission-rpc. 20 + transmission-rpc = super.transmission-rpc.overridePythonAttrs (old: rec { 21 + version = "3.4.2"; 22 + src = fetchFromGitHub { 23 + owner = "Trim21"; 24 + repo = "transmission-rpc"; 25 + rev = "refs/tags/v${version}"; 26 + hash = "sha256-7XbL6plIPZHQ/0Z+7bvtj8hqkh4klFyIV73DnrUAkps="; 27 + }; 28 + }); 29 }; 30 }; 31 in