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

33 lines
1.1 KiB
Nix
Raw Normal View History

2017-04-13 22:18:55 +02:00
{ stdenv, pythonPackages, fetchFromGitHub, rtmpdump, ffmpeg }:
pythonPackages.buildPythonApplication rec {
2017-04-13 22:18:55 +02:00
version = "0.5.0";
name = "streamlink-${version}";
src = fetchFromGitHub {
owner = "streamlink";
repo = "streamlink";
rev = "${version}";
2017-04-13 22:18:55 +02:00
sha256 = "08q7f1fnm3zhs1knrkl6npr4yvpblqbiwa0m9r186ny11jq2dyib";
};
2017-04-13 22:18:55 +02:00
buildInputs = with pythonPackages; [ pytest mock ];
propagatedBuildInputs = (with pythonPackages; [ pycryptodome requests2 iso-639 iso3166 ]) ++ [ rtmpdump ffmpeg ];
meta = with stdenv.lib; {
homepage = https://github.com/streamlink/streamlink;
2016-09-21 18:34:01 +02:00
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;
2017-04-13 22:18:55 +02:00
maintainers = with maintainers; [ dezgeg zraexy ];
};
}