mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
45 lines
1.3 KiB
Nix
45 lines
1.3 KiB
Nix
{ stdenv, fetchFromGitHub, makeWrapper, python, perl, zip
|
|
, rtmpdump, nose, mock, pycrypto, requests2, substituteAll }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "svtplay-dl-${version}";
|
|
version = "1.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "spaam";
|
|
repo = "svtplay-dl";
|
|
rev = version;
|
|
sha256 = "0wzh86zjly2r03qpjb5z0ddy79qkbw7k04qfawj22nf2w629r0dk";
|
|
};
|
|
|
|
pythonPaths = [ pycrypto requests2 ];
|
|
buildInputs = [ python perl nose mock rtmpdump makeWrapper ] ++ pythonPaths;
|
|
nativeBuildInputs = [ zip ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace lib/svtplay_dl/fetcher/rtmp.py \
|
|
--replace '"rtmpdump"' '"${rtmpdump}/bin/rtmpdump"'
|
|
|
|
substituteInPlace run-tests.sh \
|
|
--replace 'PYTHONPATH=lib' 'PYTHONPATH=lib:$PYTHONPATH'
|
|
'';
|
|
|
|
makeFlags = "PREFIX=$(out) SYSCONFDIR=$(out)/etc PYTHON=${python}/bin/python";
|
|
|
|
postInstall = ''
|
|
wrapProgram "$out/bin/svtplay-dl" \
|
|
--prefix PYTHONPATH : "$PYTHONPATH"
|
|
'';
|
|
|
|
doCheck = true;
|
|
checkPhase = "sh run-tests.sh -2";
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://github.com/spaam/svtplay-dl;
|
|
description = "Command-line tool to download videos from svtplay.se and other sites";
|
|
license = licenses.mit;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
maintainers = [ maintainers.rycee ];
|
|
};
|
|
}
|