nixpkgs/pkgs/applications/video/streamlink/default.nix
2021-04-25 16:02:58 +02:00

57 lines
1.2 KiB
Nix

{ lib
, python3
, fetchFromGitHub
, rtmpdump
, ffmpeg
}:
python3.pkgs.buildPythonApplication rec {
pname = "streamlink";
version = "2.1.1";
src = fetchFromGitHub {
owner = "streamlink";
repo = "streamlink";
rev = version;
sha256 = "14vqh4pck3q766qln7c57n9bz8zrlgfqrpkdn8x0ac9zhlhfn1zm";
};
checkInputs = with python3.pkgs; [
pytestCheckHook
mock
requests-mock
freezegun
];
propagatedBuildInputs = (with python3.pkgs; [
pycryptodome
requests
iso-639
iso3166
websocket_client
isodate
]) ++ [
rtmpdump
ffmpeg
];
disabledTests = [
"test_plugin_not_in_removed_list"
];
meta = with lib; {
homepage = "https://github.com/streamlink/streamlink";
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 ++ platforms.darwin;
maintainers = with maintainers; [ dezgeg zraexy ];
};
}