mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
50 lines
1.3 KiB
Nix
50 lines
1.3 KiB
Nix
{ stdenv, fetchFromGitHub, makeWrapper, python3Packages, perl, zip
|
|
, gitMinimal }:
|
|
|
|
let
|
|
|
|
inherit (python3Packages)
|
|
python nose pycrypto pyyaml requests mock python-dateutil setuptools;
|
|
|
|
in stdenv.mkDerivation rec {
|
|
pname = "svtplay-dl";
|
|
version = "2.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "spaam";
|
|
repo = "svtplay-dl";
|
|
rev = version;
|
|
sha256 = "146ss7pzh61yw84crk6hzfxkfdnf6bq07m11b6lgsw4hsn71g59w";
|
|
};
|
|
|
|
pythonPaths = [ pycrypto pyyaml requests ];
|
|
buildInputs = [ python perl nose mock makeWrapper python-dateutil setuptools ] ++ pythonPaths;
|
|
nativeBuildInputs = [ gitMinimal zip ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace scripts/run-tests.sh \
|
|
--replace 'PYTHONPATH=lib' 'PYTHONPATH=lib:$PYTHONPATH'
|
|
'';
|
|
|
|
makeFlags = "PREFIX=$(out) SYSCONFDIR=$(out)/etc PYTHON=${python.interpreter}";
|
|
|
|
postInstall = ''
|
|
wrapProgram "$out/bin/svtplay-dl" \
|
|
--prefix PYTHONPATH : "$PYTHONPATH"
|
|
'';
|
|
|
|
doCheck = true;
|
|
checkPhase = ''
|
|
sh scripts/run-tests.sh -2
|
|
'';
|
|
|
|
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 ];
|
|
broken = true;
|
|
};
|
|
}
|