nixpkgs/pkgs/applications/video/streamlink/default.nix

33 lines
1.1 KiB
Nix
Raw Normal View History

2017-04-13 20:18:55 +00:00
{ stdenv, pythonPackages, fetchFromGitHub, rtmpdump, ffmpeg }:
pythonPackages.buildPythonApplication rec {
2018-01-23 22:21:16 +00:00
version = "0.10.0";
name = "streamlink-${version}";
src = fetchFromGitHub {
owner = "streamlink";
repo = "streamlink";
rev = "${version}";
2018-01-23 22:21:16 +00:00
sha256 = "1p9gkwcvqlnv09ihqh71nh82nnmq9ybp1v8d8kd2vhkg1vm5ximn";
};
2018-01-23 22:21:16 +00:00
checkInputs = with pythonPackages; [ pytest mock requests-mock ];
2017-04-13 20:18:55 +00:00
2017-09-12 20:39:08 +00:00
propagatedBuildInputs = (with pythonPackages; [ pycryptodome requests iso-639 iso3166 websocket_client ]) ++ [ rtmpdump ffmpeg ];
meta = with stdenv.lib; {
homepage = https://github.com/streamlink/streamlink;
2016-09-21 16:34:01 +00:00
description = "CLI for extracting streams from various websites to video player of your choosing";
longDescription = ''
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;
platforms = platforms.linux;
2017-04-13 20:18:55 +00:00
maintainers = with maintainers; [ dezgeg zraexy ];
};
}