3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/video/streamlink/default.nix

57 lines
1.2 KiB
Nix
Raw Normal View History

{ lib
2021-04-25 15:01:46 +01:00
, python3
, fetchFromGitHub
, rtmpdump
2021-04-25 15:01:46 +01:00
, ffmpeg
}:
2021-04-25 15:01:46 +01:00
python3.pkgs.buildPythonApplication rec {
pname = "streamlink";
2021-07-20 15:20:49 +01:00
version = "2.2.0";
src = fetchFromGitHub {
owner = "streamlink";
repo = "streamlink";
2019-09-09 00:38:31 +01:00
rev = version;
2021-07-20 15:20:49 +01:00
sha256 = "1323v1pavmbb2vk3djdkxd8j6i3yrcgrkyl2d7xwkb7nwlla1x1v";
};
2021-04-25 15:01:46 +01:00
checkInputs = with python3.pkgs; [
pytestCheckHook
mock
requests-mock
freezegun
];
2018-06-24 23:19:01 +01:00
2021-04-25 15:01:46 +01:00
propagatedBuildInputs = (with python3.pkgs; [
pycryptodome
requests
iso-639
iso3166
websocket-client
isodate
]) ++ [
rtmpdump
2021-04-25 15:01:46 +01:00
ffmpeg
];
disabledTests = [
"test_plugin_not_in_removed_list"
];
meta = with 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 = ''
2021-07-20 15:20:49 +01:00
Streamlink is a CLI utility that pipes 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;
2021-07-20 15:20:49 +01:00
maintainers = with maintainers; [ dezgeg zraexy DeeUnderscore ];
};
}