2018-08-03 15:48:26 +02:00
|
|
|
{ stdenv, fetchFromGitHub, makeWrapper, python3Packages, perl, zip
|
2019-08-27 17:45:00 +02:00
|
|
|
, gitMinimal }:
|
2015-01-01 16:34:58 +01:00
|
|
|
|
2016-08-14 14:28:05 +02:00
|
|
|
let
|
2019-09-14 16:47:09 +02:00
|
|
|
|
|
|
|
inherit (python3Packages)
|
|
|
|
python nose pycrypto pyyaml requests mock python-dateutil setuptools;
|
|
|
|
|
2016-08-14 14:28:05 +02:00
|
|
|
in stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "svtplay-dl";
|
2019-09-14 16:47:09 +02:00
|
|
|
version = "2.4";
|
2015-01-01 16:34:58 +01:00
|
|
|
|
2015-05-31 22:38:44 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "spaam";
|
|
|
|
repo = "svtplay-dl";
|
|
|
|
rev = version;
|
2019-09-14 16:47:09 +02:00
|
|
|
sha256 = "146ss7pzh61yw84crk6hzfxkfdnf6bq07m11b6lgsw4hsn71g59w";
|
2015-01-01 16:34:58 +01:00
|
|
|
};
|
|
|
|
|
2018-11-05 00:08:46 +01:00
|
|
|
pythonPaths = [ pycrypto pyyaml requests ];
|
2019-09-14 16:47:09 +02:00
|
|
|
buildInputs = [ python perl nose mock makeWrapper python-dateutil setuptools ] ++ pythonPaths;
|
2018-11-05 00:08:46 +01:00
|
|
|
nativeBuildInputs = [ gitMinimal zip ];
|
2015-01-01 16:34:58 +01:00
|
|
|
|
|
|
|
postPatch = ''
|
2016-08-27 23:55:37 +02:00
|
|
|
substituteInPlace scripts/run-tests.sh \
|
2015-01-01 16:34:58 +01:00
|
|
|
--replace 'PYTHONPATH=lib' 'PYTHONPATH=lib:$PYTHONPATH'
|
|
|
|
'';
|
|
|
|
|
2019-10-27 14:03:25 +01:00
|
|
|
makeFlags = [ "PREFIX=$(out)" "SYSCONFDIR=$(out)/etc" "PYTHON=${python.interpreter}" ];
|
2015-01-01 16:34:58 +01:00
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
wrapProgram "$out/bin/svtplay-dl" \
|
|
|
|
--prefix PYTHONPATH : "$PYTHONPATH"
|
|
|
|
'';
|
|
|
|
|
|
|
|
doCheck = true;
|
2018-01-14 20:45:17 +01:00
|
|
|
checkPhase = ''
|
|
|
|
sh scripts/run-tests.sh -2
|
|
|
|
'';
|
2015-01-01 16:34:58 +01:00
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|