2018-08-03 14:48:26 +01:00
|
|
|
{ stdenv, fetchFromGitHub, makeWrapper, python3Packages, perl, zip
|
2019-08-27 16:45:00 +01:00
|
|
|
, gitMinimal }:
|
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)
|
|
|
|
python nose pycrypto pyyaml requests mock python-dateutil setuptools;
|
|
|
|
|
2016-08-14 13:28:05 +01:00
|
|
|
in stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "svtplay-dl";
|
2019-09-14 15:47:09 +01:00
|
|
|
version = "2.4";
|
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;
|
2019-09-14 15:47:09 +01:00
|
|
|
sha256 = "146ss7pzh61yw84crk6hzfxkfdnf6bq07m11b6lgsw4hsn71g59w";
|
2015-01-01 15:34:58 +00:00
|
|
|
};
|
|
|
|
|
2018-11-04 23:08:46 +00:00
|
|
|
pythonPaths = [ pycrypto pyyaml requests ];
|
2019-09-14 15:47:09 +01:00
|
|
|
buildInputs = [ python perl nose mock makeWrapper python-dateutil setuptools ] ++ pythonPaths;
|
2018-11-04 23:08:46 +00:00
|
|
|
nativeBuildInputs = [ gitMinimal zip ];
|
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'
|
|
|
|
'';
|
|
|
|
|
2016-08-14 13:28:05 +01:00
|
|
|
makeFlags = "PREFIX=$(out) SYSCONFDIR=$(out)/etc PYTHON=${python.interpreter}";
|
2015-01-01 15:34:58 +00:00
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
wrapProgram "$out/bin/svtplay-dl" \
|
|
|
|
--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
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|