2017-04-13 22:18:55 +02:00
|
|
|
{ stdenv, pythonPackages, fetchFromGitHub, rtmpdump, ffmpeg }:
|
2016-09-21 18:25:52 +02:00
|
|
|
|
|
|
|
pythonPackages.buildPythonApplication rec {
|
2020-05-04 11:07:57 +02:00
|
|
|
version = "1.4.1";
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "streamlink";
|
2016-09-21 18:25:52 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "streamlink";
|
|
|
|
repo = "streamlink";
|
2019-09-09 01:38:31 +02:00
|
|
|
rev = version;
|
2020-05-04 11:07:57 +02:00
|
|
|
sha256 = "1q3h48qwf7vs2wnbkwv0xnm6s65mkcyqdz7z6z3vrsmif2sb19l2";
|
2016-09-21 18:25:52 +02:00
|
|
|
};
|
|
|
|
|
2018-06-25 00:19:01 +02:00
|
|
|
checkInputs = with pythonPackages; [ pytest mock requests-mock freezegun ];
|
|
|
|
|
|
|
|
propagatedBuildInputs = (with pythonPackages; [ pycryptodome requests iso-639 iso3166 websocket_client isodate ]) ++ [ rtmpdump ffmpeg ];
|
2016-09-21 18:25:52 +02:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/streamlink/streamlink";
|
2016-09-21 18:34:01 +02:00
|
|
|
description = "CLI for extracting streams from various websites to video player of your choosing";
|
|
|
|
longDescription = ''
|
2016-09-21 18:25:52 +02:00
|
|
|
Streamlink is a CLI utility that pipes flash videos from online
|
|
|
|
streaming services to a variety of video players such as VLC, or
|
|
|
|
alternatively, a browser.
|
|
|
|
|
|
|
|
Streamlink is a fork of the livestreamer project.
|
|
|
|
'';
|
|
|
|
license = licenses.bsd2;
|
2018-07-15 05:11:49 +02:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
|
|
maintainers = with maintainers; [ dezgeg zraexy enzime ];
|
2016-09-21 18:25:52 +02:00
|
|
|
};
|
|
|
|
}
|