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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

50 lines
1.2 KiB
Nix
Raw Normal View History

{ lib
, python3Packages
2021-04-25 16:01:46 +02:00
, ffmpeg
, fetchpatch
}:
python3Packages.buildPythonApplication rec {
pname = "streamlink";
2022-03-05 21:36:46 +01:00
version = "3.2.0";
src = python3Packages.fetchPypi {
inherit pname version;
2022-03-05 21:36:46 +01:00
sha256 = "sha256-l3DS2DhExTeKc+FBMNy3YKvIVlZsqgpB/FuXoN7V2SY=";
};
checkInputs = with python3Packages; [
2021-04-25 16:01:46 +02:00
pytestCheckHook
mock
requests-mock
freezegun
];
2018-06-25 00:19:01 +02:00
propagatedBuildInputs = (with python3Packages; [
2021-11-18 04:51:16 +01:00
isodate
lxml
pycountry
pycryptodome
2021-11-18 04:51:16 +01:00
pysocks
requests
websocket-client
]) ++ [
2021-04-25 16:01:46 +02:00
ffmpeg
];
meta = with lib; {
homepage = "https://streamlink.github.io/";
2016-09-21 18:34:01 +02:00
description = "CLI for extracting streams from various websites to video player of your choosing";
longDescription = ''
2021-07-20 16:20:49 +02: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.
'';
changelog = "https://github.com/streamlink/streamlink/raw/${version}/CHANGELOG.md";
license = licenses.bsd2;
2021-07-20 16:20:49 +02:00
maintainers = with maintainers; [ dezgeg zraexy DeeUnderscore ];
};
}