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

59 lines
1.4 KiB
Nix
Raw Normal View History

{ lib
2021-04-25 14:01:46 +00:00
, python3
, fetchFromGitHub
, rtmpdump
2021-04-25 14:01:46 +00:00
, ffmpeg
}:
2021-04-25 14:01:46 +00:00
python3.pkgs.buildPythonApplication rec {
pname = "streamlink";
2021-07-27 22:10:11 +00:00
version = "2.3.0";
src = fetchFromGitHub {
owner = "streamlink";
repo = "streamlink";
2019-09-08 23:38:31 +00:00
rev = version;
2021-07-27 22:10:11 +00:00
sha256 = "sha256-lsurDFvVHn1rxR3bgG7BY512ISavpja36/UaKXauf+g=";
};
2021-04-25 14:01:46 +00:00
checkInputs = with python3.pkgs; [
pytestCheckHook
mock
requests-mock
freezegun
];
2018-06-24 22:19:01 +00:00
2021-04-25 14:01:46 +00:00
propagatedBuildInputs = (with python3.pkgs; [
pycryptodome
requests
iso-639
iso3166
websocket-client
isodate
]) ++ [
rtmpdump
2021-04-25 14:01:46 +00:00
ffmpeg
];
2021-07-27 22:10:11 +00:00
# note that upstream currently uses requests 2.25.1 in Windows builds
postPatch = ''
substituteInPlace setup.py \
--replace 'requests>=2.26.0,<3.0' 'requests>=2.25.1,<3.0'
'';
meta = with 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 = ''
2021-07-20 14:20:49 +00: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 14:20:49 +00:00
maintainers = with maintainers; [ dezgeg zraexy DeeUnderscore ];
};
}