2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, makeWrapper, python3Packages, perl, zip
|
2020-11-24 19:01:07 +00:00
|
|
|
, gitMinimal, ffmpeg }:
|
2015-01-01 15:34:58 +00:00
|
|
|
|
2016-08-14 13:28:05 +01:00
|
|
|
let
|
2019-09-14 15:47:09 +01:00
|
|
|
|
|
|
|
inherit (python3Packages)
|
2021-09-12 15:08:00 +01:00
|
|
|
python pytest nose cryptography pyyaml requests mock requests-mock
|
|
|
|
python-dateutil setuptools;
|
2019-09-14 15:47:09 +01:00
|
|
|
|
2016-08-14 13:28:05 +01:00
|
|
|
in stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "svtplay-dl";
|
2021-12-22 12:03:30 +00:00
|
|
|
version = "4.10";
|
2015-01-01 15:34:58 +00:00
|
|
|
|
2015-05-31 21:38:44 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "spaam";
|
|
|
|
repo = "svtplay-dl";
|
|
|
|
rev = version;
|
2021-12-22 12:03:30 +00:00
|
|
|
sha256 = "sha256-JK/JtGDmmTJ+g0kmM7mSJi7+/N552GKtlMkh7quOBjo=";
|
2015-01-01 15:34:58 +00:00
|
|
|
};
|
|
|
|
|
2021-04-05 16:59:58 +01:00
|
|
|
pythonPaths = [ cryptography pyyaml requests ];
|
2021-09-12 15:08:00 +01:00
|
|
|
buildInputs = [ python perl python-dateutil setuptools ] ++ pythonPaths;
|
2021-02-07 09:17:39 +00:00
|
|
|
nativeBuildInputs = [ gitMinimal zip makeWrapper ];
|
2021-09-12 15:08:00 +01:00
|
|
|
checkInputs = [ nose pytest mock requests-mock ];
|
2015-01-01 15:34:58 +00:00
|
|
|
|
|
|
|
postPatch = ''
|
2016-08-27 22:55:37 +01:00
|
|
|
substituteInPlace scripts/run-tests.sh \
|
2015-01-01 15:34:58 +00:00
|
|
|
--replace 'PYTHONPATH=lib' 'PYTHONPATH=lib:$PYTHONPATH'
|
2020-10-03 21:34:03 +01:00
|
|
|
|
|
|
|
sed -i '/def test_sublang2\?(/ i\ @unittest.skip("accesses network")' \
|
|
|
|
lib/svtplay_dl/tests/test_postprocess.py
|
2015-01-01 15:34:58 +00:00
|
|
|
'';
|
|
|
|
|
2019-10-27 13:03:25 +00:00
|
|
|
makeFlags = [ "PREFIX=$(out)" "SYSCONFDIR=$(out)/etc" "PYTHON=${python.interpreter}" ];
|
2015-01-01 15:34:58 +00:00
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
wrapProgram "$out/bin/svtplay-dl" \
|
2020-11-24 19:01:07 +00:00
|
|
|
--prefix PATH : "${ffmpeg}" \
|
2015-01-01 15:34:58 +00:00
|
|
|
--prefix PYTHONPATH : "$PYTHONPATH"
|
|
|
|
'';
|
|
|
|
|
|
|
|
doCheck = true;
|
2018-01-14 19:45:17 +00:00
|
|
|
checkPhase = ''
|
|
|
|
sh scripts/run-tests.sh -2
|
|
|
|
'';
|
2015-01-01 15:34:58 +00:00
|
|
|
|
2021-07-14 14:00:33 +01:00
|
|
|
doInstallCheck = true;
|
|
|
|
installCheckPhase = ''
|
|
|
|
runHook preInstallCheck
|
|
|
|
$out/bin/svtplay-dl --help > /dev/null
|
|
|
|
runHook postInstallCheck
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/spaam/svtplay-dl";
|
2015-01-01 15:34:58 +00:00
|
|
|
description = "Command-line tool to download videos from svtplay.se and other sites";
|
|
|
|
license = licenses.mit;
|
2021-01-15 09:19:50 +00:00
|
|
|
platforms = lib.platforms.unix;
|
2015-01-01 15:34:58 +00:00
|
|
|
};
|
|
|
|
}
|