nixpkgs/pkgs/servers/sabnzbd/default.nix

65 lines
1.3 KiB
Nix
Raw Normal View History

{ lib, stdenv
2020-08-22 05:20:28 +03:00
, fetchFromGitHub
, python3
, par2cmdline
, unzip
, unrar
, p7zip
, makeWrapper
2021-09-21 14:38:22 +03:00
, nixosTests
2020-08-22 05:20:28 +03:00
}:
2016-09-26 21:52:21 +03:00
let
2022-06-14 11:46:56 +03:00
pythonEnv = python3.withPackages(ps: with ps; [
2020-08-22 05:20:28 +03:00
chardet
cheetah3
cherrypy
cryptography
configobj
feedparser
sabyenc3
2021-09-21 14:06:45 +03:00
puremagic
guessit
2022-01-30 10:45:16 +03:00
pysocks
2020-08-22 05:20:28 +03:00
]);
2021-01-15 10:07:56 +03:00
path = lib.makeBinPath [ par2cmdline unrar unzip p7zip ];
2016-09-26 21:52:21 +03:00
in stdenv.mkDerivation rec {
2023-02-07 12:26:02 +03:00
version = "3.7.2";
2017-02-14 16:14:27 +03:00
pname = "sabnzbd";
2017-02-14 16:14:27 +03:00
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = version;
2023-02-07 12:26:02 +03:00
sha256 = "sha256-1gGvdc6TJrkFIrN+TUL/7EejApgpgAQxnQbp8RMknHQ=";
};
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ pythonEnv ];
2016-09-26 21:52:21 +03:00
installPhase = ''
2021-06-21 15:57:43 +03:00
runHook preInstall
2016-09-26 21:52:21 +03:00
mkdir -p $out
cp -R * $out/
mkdir $out/bin
echo "${pythonEnv}/bin/python $out/SABnzbd.py \$*" > $out/bin/sabnzbd
chmod +x $out/bin/sabnzbd
wrapProgram $out/bin/sabnzbd --set PATH ${path}
2021-06-21 15:57:43 +03:00
runHook postInstall
2016-09-26 21:52:21 +03:00
'';
2021-09-21 14:38:22 +03:00
passthru.tests = {
smoke-test = nixosTests.sabnzbd;
};
meta = with lib; {
description = "Usenet NZB downloader, par2 repairer and auto extracting server";
homepage = "https://sabnzbd.org";
license = licenses.gpl2Plus;
platforms = platforms.linux;
2021-09-21 14:15:42 +03:00
maintainers = with lib.maintainers; [ fridh jojosch ];
};
}