Skip to content

Commit

Permalink
svtplay-dl: 2.1 -> 2.2
Browse files Browse the repository at this point in the history
Also remove no longer supported dependency on rtmpdump.
  • Loading branch information
rycee authored and FRidh committed Aug 27, 2019
1 parent bb3f8ea commit c09bc3e
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions pkgs/tools/misc/svtplay-dl/default.nix
Original file line number Diff line number Diff line change
@@ -1,27 +1,24 @@
{ stdenv, fetchFromGitHub, makeWrapper, python3Packages, perl, zip
, rtmpdump, gitMinimal }:
, gitMinimal }:

let
inherit (python3Packages) python nose pycrypto pyyaml requests mock;
in stdenv.mkDerivation rec {
name = "svtplay-dl-${version}";
version = "2.1";
version = "2.2";

src = fetchFromGitHub {
owner = "spaam";
repo = "svtplay-dl";
rev = version;
sha256 = "1cnc32gbhs955391hs1x1jpjsl3b6pqy7ysdydmp9q1i2rw105ln";
sha256 = "02yjz17x8dl5spn7mcbj1ji7vsyx0qwwa60zqyrdxpr03g1rnhdz";
};

pythonPaths = [ pycrypto pyyaml requests ];
buildInputs = [ python perl nose mock rtmpdump makeWrapper ] ++ pythonPaths;
buildInputs = [ python perl nose mock makeWrapper ] ++ pythonPaths;
nativeBuildInputs = [ gitMinimal zip ];

postPatch = ''
substituteInPlace lib/svtplay_dl/fetcher/rtmp.py \
--replace '"rtmpdump"' '"${rtmpdump}/bin/rtmpdump"'
substituteInPlace scripts/run-tests.sh \
--replace 'PYTHONPATH=lib' 'PYTHONPATH=lib:$PYTHONPATH'
'';
Expand Down

0 comments on commit c09bc3e

Please sign in to comment.