forked from mirrors/nixpkgs
streamlink: 0.3.0 -> 0.5.0
This commit is contained in:
parent
ab031bf9b7
commit
51770c85e4
|
@ -1,17 +1,19 @@
|
||||||
{ stdenv, pythonPackages, fetchFromGitHub, rtmpdump }:
|
{ stdenv, pythonPackages, fetchFromGitHub, rtmpdump, ffmpeg }:
|
||||||
|
|
||||||
pythonPackages.buildPythonApplication rec {
|
pythonPackages.buildPythonApplication rec {
|
||||||
version = "0.3.0";
|
version = "0.5.0";
|
||||||
name = "streamlink-${version}";
|
name = "streamlink-${version}";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "streamlink";
|
owner = "streamlink";
|
||||||
repo = "streamlink";
|
repo = "streamlink";
|
||||||
rev = "${version}";
|
rev = "${version}";
|
||||||
sha256 = "1bjih6y21vmjmsk3xvhgc1innymryklgylyvjrskqw610niai59j";
|
sha256 = "08q7f1fnm3zhs1knrkl6npr4yvpblqbiwa0m9r186ny11jq2dyib";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = (with pythonPackages; [ pycrypto requests2 ]) ++ [ rtmpdump ];
|
buildInputs = with pythonPackages; [ pytest mock ];
|
||||||
|
|
||||||
|
propagatedBuildInputs = (with pythonPackages; [ pycryptodome requests2 iso-639 iso3166 ]) ++ [ rtmpdump ffmpeg ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = https://github.com/streamlink/streamlink;
|
homepage = https://github.com/streamlink/streamlink;
|
||||||
|
@ -25,6 +27,6 @@ pythonPackages.buildPythonApplication rec {
|
||||||
'';
|
'';
|
||||||
license = licenses.bsd2;
|
license = licenses.bsd2;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
maintainers = [ maintainers.dezgeg ];
|
maintainers = with maintainers; [ dezgeg zraexy ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue