2017-04-13 21:18:55 +01:00
|
|
|
{ stdenv, pythonPackages, fetchFromGitHub, rtmpdump, ffmpeg }:
|
2016-09-21 17:25:52 +01:00
|
|
|
|
|
|
|
pythonPackages.buildPythonApplication rec {
|
2018-06-29 21:26:52 +01:00
|
|
|
version = "0.14.2";
|
2016-09-21 17:25:52 +01:00
|
|
|
name = "streamlink-${version}";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "streamlink";
|
|
|
|
repo = "streamlink";
|
2016-10-31 17:20:23 +00:00
|
|
|
rev = "${version}";
|
2018-06-29 21:26:52 +01:00
|
|
|
sha256 = "1njwfy1h8a9n5z6crrfnknlw4ys0bap2jam6ga6njgkd10aly9qr";
|
2016-09-21 17:25:52 +01:00
|
|
|
};
|
|
|
|
|
2018-06-24 23:19:01 +01: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 17:25:52 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://github.com/streamlink/streamlink;
|
2016-09-21 17:34:01 +01:00
|
|
|
description = "CLI for extracting streams from various websites to video player of your choosing";
|
|
|
|
longDescription = ''
|
2016-09-21 17:25:52 +01: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 04:11:49 +01:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
|
|
maintainers = with maintainers; [ dezgeg zraexy enzime ];
|
2016-09-21 17:25:52 +01:00
|
|
|
};
|
|
|
|
}
|