nixpkgs/pkgs/servers/sabnzbd/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

89 lines
1.7 KiB
Nix
Raw Normal View History

{ lib, stdenv
, coreutils
2020-08-22 02:20:28 +00:00
, fetchFromGitHub
, python3
, par2cmdline-turbo
2020-08-22 02:20:28 +00:00
, unzip
, unrar
, p7zip
, util-linux
2020-08-22 02:20:28 +00:00
, makeWrapper
2021-09-21 11:38:22 +00:00
, nixosTests
2020-08-22 02:20:28 +00:00
}:
2016-09-26 18:52:21 +00:00
let
2022-06-14 08:46:56 +00:00
pythonEnv = python3.withPackages(ps: with ps; [
babelfish
cffi
2020-08-22 02:20:28 +00:00
chardet
cheetah3
cheroot
2020-08-22 02:20:28 +00:00
cherrypy
configobj
cryptography
2020-08-22 02:20:28 +00:00
feedparser
2021-09-21 11:06:45 +00:00
guessit
jaraco-classes
jaraco-collections
jaraco-context
jaraco-functools
jaraco-text
more-itertools
notify2
orjson
portend
puremagic
pycparser
2022-01-30 07:45:16 +00:00
pysocks
python-dateutil
pytz
rebulk
sabctools
sabyenc3
sgmllib3k
six
tempora
zc-lockfile
2020-08-22 02:20:28 +00:00
]);
path = lib.makeBinPath [ coreutils par2cmdline-turbo unrar unzip p7zip util-linux ];
2016-09-26 18:52:21 +00:00
in stdenv.mkDerivation rec {
2024-03-11 12:48:05 +00:00
version = "4.2.3";
2017-02-14 13:14:27 +00:00
pname = "sabnzbd";
2017-02-14 13:14:27 +00:00
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = version;
2024-03-11 12:48:05 +00:00
sha256 = "sha256-DM+sgrb7Zvtvp0th8GlOloSBcD8mG1RYyM91+uvCOgU=";
};
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ pythonEnv ];
2016-09-26 18:52:21 +00:00
installPhase = ''
2021-06-21 12:57:43 +00:00
runHook preInstall
2016-09-26 18:52:21 +00: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 12:57:43 +00:00
runHook postInstall
2016-09-26 18:52:21 +00:00
'';
2021-09-21 11:38:22 +00: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;
maintainers = with lib.maintainers; [ jojosch adamcstephens ];
2023-11-23 21:09:35 +00:00
mainProgram = "sabnzbd";
};
}