summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorzraexy <zraexy@gmail.com>2017-04-13 12:18:55 -0800
committerJörg Thalheim <joerg@thalheim.io>2017-04-17 01:24:28 +0200
commit51770c85e49b42c6aaa5ebfd9cb37171e8374863 (patch)
tree6120216aa983c6e18f8422e6ca7123e87caf0948 /pkgs
parentab031bf9b72da792c1d55a5db08331abc63fd0e6 (diff)
downloadnixpkgs-51770c85e49b42c6aaa5ebfd9cb37171e8374863.tar
nixpkgs-51770c85e49b42c6aaa5ebfd9cb37171e8374863.tar.gz
nixpkgs-51770c85e49b42c6aaa5ebfd9cb37171e8374863.tar.bz2
nixpkgs-51770c85e49b42c6aaa5ebfd9cb37171e8374863.tar.lz
nixpkgs-51770c85e49b42c6aaa5ebfd9cb37171e8374863.tar.xz
nixpkgs-51770c85e49b42c6aaa5ebfd9cb37171e8374863.tar.zst
nixpkgs-51770c85e49b42c6aaa5ebfd9cb37171e8374863.zip
streamlink: 0.3.0 -> 0.5.0
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/video/streamlink/default.nix12
1 files changed, 7 insertions, 5 deletions
diff --git a/pkgs/applications/video/streamlink/default.nix b/pkgs/applications/video/streamlink/default.nix
index 462d74c9672..163218c0478 100644
--- a/pkgs/applications/video/streamlink/default.nix
+++ b/pkgs/applications/video/streamlink/default.nix
@@ -1,17 +1,19 @@
-{ stdenv, pythonPackages, fetchFromGitHub, rtmpdump }:
+{ stdenv, pythonPackages, fetchFromGitHub, rtmpdump, ffmpeg }:
 
 pythonPackages.buildPythonApplication rec {
-  version = "0.3.0";
+  version = "0.5.0";
   name = "streamlink-${version}";
 
   src = fetchFromGitHub {
     owner = "streamlink";
     repo = "streamlink";
     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; {
     homepage = https://github.com/streamlink/streamlink;
@@ -25,6 +27,6 @@ pythonPackages.buildPythonApplication rec {
     '';
     license = licenses.bsd2;
     platforms = platforms.linux;
-    maintainers = [ maintainers.dezgeg ];
+    maintainers = with maintainers; [ dezgeg zraexy ];
   };
 }