Unverified Commit dbf4f1a5 authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

Merge pull request #313560 from Assistant/twitch-chat-downloader

twitch-chat-downloader: 2.5.3 -> 2.5.4
parents 39ec6323 42d079c6
Loading
Loading
Loading
Loading
+8 −7
Original line number Diff line number Diff line
{ lib
, buildPythonApplication
, fetchPypi
, fetchFromGitHub
, iso8601
, progressbar2
, requests
@@ -8,15 +8,16 @@

buildPythonApplication rec {
  pname = "twitch-chat-downloader";
  version = "2.5.3";
  version = "2.5.4";

  # NOTE: Using maintained fork because upstream has stopped working, and it has
  # not been updated in a while.
  # https://github.com/PetterKraabol/Twitch-Chat-Downloader/issues/142
  src = fetchPypi {
    inherit version;
    pname = "tdh-tcd";
    sha256 = "sha256-dvj0HoF/2n5aQGMOD8UYY4EZegQwThPy1XJFvXyRT4Q=";
  src = fetchFromGitHub {
    owner = "TheDrHax";
    repo = "twitch-chat-downloader";
    rev = version;
    hash = "sha256-mV60ygrtQa9ZkJ2CImhAV59ckCJ7vJSA9cWkYE2xo1M=";
  };

  propagatedBuildInputs = [
@@ -34,6 +35,6 @@ buildPythonApplication rec {
    mainProgram = "tcd";
    homepage = "https://github.com/TheDrHax/Twitch-Chat-Downloader";
    license = licenses.mit;
    maintainers = with maintainers; [ ];
    maintainers = with maintainers; [ assistant ];
  };
}