1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-05 20:12:52 +00:00
nixpkgs/pkgs/tools/misc/svtplay-dl/default.nix

52 lines
1.4 KiB
Nix
Raw Normal View History

{ 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-04-05 16:59:58 +01:00
python nose cryptography pyyaml 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 {
pname = "svtplay-dl";
2021-03-28 21:11:14 +01:00
version = "3.3";
2015-01-01 15:34:58 +00:00
src = fetchFromGitHub {
owner = "spaam";
repo = "svtplay-dl";
rev = version;
2021-03-28 21:11:14 +01:00
sha256 = "00pz5vv39qjsw67fdlj6942371lyvv368lc82z17nnh723ck54yy";
2015-01-01 15:34:58 +00:00
};
2021-04-05 16:59:58 +01:00
pythonPaths = [ cryptography pyyaml requests ];
buildInputs = [ python perl nose mock python-dateutil setuptools ] ++ pythonPaths;
nativeBuildInputs = [ gitMinimal zip makeWrapper ];
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
'';
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
meta = with lib; {
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
};
}