nixpkgs/pkgs/tools/misc/svtplay-dl/default.nix

49 lines
1.3 KiB
Nix
Raw Normal View History

2018-08-03 15:48:26 +02:00
{ stdenv, fetchFromGitHub, makeWrapper, python3Packages, perl, zip
, 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 {
pname = "svtplay-dl";
2019-09-14 16:47:09 +02:00
version = "2.4";
2015-01-01 16:34:58 +01: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'
'';
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";
2015-01-01 16:34:58 +01:00
description = "Command-line tool to download videos from svtplay.se and other sites";
license = licenses.mit;
platforms = stdenv.lib.platforms.linux;
maintainers = [ maintainers.rycee ];
};
}