Merge pull request #31665 from zraexy/streamlink

streamlink: 0.8.1 -> 0.9.0
This commit is contained in:
Samuel Leathers 2017-11-15 09:23:24 -05:00 committed by GitHub
commit c702b1c021
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,14 +1,14 @@
{ stdenv, pythonPackages, fetchFromGitHub, rtmpdump, ffmpeg }:
pythonPackages.buildPythonApplication rec {
version = "0.8.1";
version = "0.9.0";
name = "streamlink-${version}";
src = fetchFromGitHub {
owner = "streamlink";
repo = "streamlink";
rev = "${version}";
sha256 = "0l09vp108dw6d9d9rri2xwlr49mr5nkrlxbivr4kk5jbaczjp9xm";
sha256 = "11jczkar3aqsbl5amkm7lsv4fz6xdaydd5izn222wjzsbvnzrcgd";
};
buildInputs = with pythonPackages; [ pytest mock ];