1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 13:41:26 +00:00

Merge pull request #9856 from rycee/bump/svtplay-dl

svtplay-dl: 0.10.2015.08.24 -> 0.20.2015.09.13
This commit is contained in:
Edward Tjörnhammar 2015-09-16 13:51:21 +02:00
commit 54ced3be71
2 changed files with 5 additions and 5 deletions

View file

@ -1,18 +1,18 @@
{ stdenv, fetchFromGitHub, makeWrapper, python, perl, zip
, rtmpdump, nose, mock, pycrypto, substituteAll }:
, rtmpdump, nose, mock, pycrypto, requests2, substituteAll }:
stdenv.mkDerivation rec {
name = "svtplay-dl-${version}";
version = "0.10.2015.08.24";
version = "0.20.2015.09.13";
src = fetchFromGitHub {
owner = "spaam";
repo = "svtplay-dl";
rev = version;
sha256 = "1w5jknqdlyw60pxx1wmx2xqkp968r9m3xdgm95ls1pjjp0pm047c";
sha256 = "07wcjwc6kk0z8s7i3sc2n7zbbkbc2wwiclf3n0h5yk54marixql0";
};
pythonPaths = [ pycrypto ];
pythonPaths = [ pycrypto requests2 ];
buildInputs = [ python perl nose mock rtmpdump makeWrapper ] ++ pythonPaths;
nativeBuildInputs = [ zip ];

View file

@ -3069,7 +3069,7 @@ let
svnfs = callPackage ../tools/filesystems/svnfs { };
svtplay-dl = callPackage ../tools/misc/svtplay-dl {
inherit (pythonPackages) nose mock;
inherit (pythonPackages) nose mock requests2;
};
sysbench = callPackage ../development/tools/misc/sysbench {};