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

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

58 lines
1.3 KiB
Nix
Raw Normal View History

{ lib
, python3Packages
2021-04-25 14:01:46 +00:00
, ffmpeg
, fetchpatch
}:
python3Packages.buildPythonApplication rec {
pname = "streamlink";
version = "5.3.0";
format = "pyproject";
src = python3Packages.fetchPypi {
inherit pname version;
hash = "sha256-+9MSSzPYZ8gwOeQLehR41SklfdcUn8Pa6TI//lh9twE=";
};
nativeCheckInputs = with python3Packages; [
2021-04-25 14:01:46 +00:00
pytestCheckHook
mock
requests-mock
freezegun
pytest-asyncio
];
2018-06-24 22:19:01 +00:00
nativeBuildInputs = with python3Packages; [
versioningit
];
propagatedBuildInputs = (with python3Packages; [
2021-11-18 03:51:16 +00:00
isodate
lxml
pycountry
pycryptodome
2021-11-18 03:51:16 +00:00
pysocks
requests
websocket-client
urllib3
certifi
]) ++ [
2021-04-25 14:01:46 +00:00
ffmpeg
];
meta = with lib; {
homepage = "https://streamlink.github.io/";
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.
'';
changelog = "https://github.com/streamlink/streamlink/raw/${version}/CHANGELOG.md";
license = licenses.bsd2;
2021-07-20 14:20:49 +00:00
maintainers = with maintainers; [ dezgeg zraexy DeeUnderscore ];
};
}