nixpkgs/pkgs/servers/sabnzbd/default.nix

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

79 lines
1.6 KiB
Nix
Raw Normal View History

{ lib, stdenv
2020-08-22 04:20:28 +02:00
, fetchFromGitHub
, python3
, par2cmdline
, unzip
, unrar
, p7zip
, makeWrapper
2021-09-21 13:38:22 +02:00
, nixosTests
2020-08-22 04:20:28 +02:00
}:
2016-09-26 20:52:21 +02:00
let
python = python3.override {
packageOverrides = final: prev: {
sabyenc3 = prev.sabyenc3.overridePythonAttrs (oldAttrs: rec {
version = "4.0.0";
src = oldAttrs.src.override {
inherit version;
hash = "sha256-PwwQ2jChKIqh7jJ6E2hkqPquTDSN4MklghfJ+MkM0n0=";
};
});
};
self = python;
};
pythonEnv = python.withPackages(ps: with ps; [
2020-08-22 04:20:28 +02:00
chardet
cheetah3
cherrypy
cryptography
configobj
feedparser
sabyenc3
2021-09-21 13:06:45 +02:00
puremagic
guessit
2022-01-30 08:45:16 +01:00
pysocks
2020-08-22 04:20:28 +02:00
]);
2021-01-15 08:07:56 +01:00
path = lib.makeBinPath [ par2cmdline unrar unzip p7zip ];
2016-09-26 20:52:21 +02:00
in stdenv.mkDerivation rec {
2022-03-20 00:33:54 +01:00
version = "3.5.3";
2017-02-14 14:14:27 +01:00
pname = "sabnzbd";
2017-02-14 14:14:27 +01:00
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = version;
2022-03-20 00:33:54 +01:00
sha256 = "sha256-pdYTTahdn9YVFreU5KhMGlUzQxHviN5G4TxWKKRBxOc=";
};
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ pythonEnv ];
2016-09-26 20:52:21 +02:00
installPhase = ''
2021-06-21 14:57:43 +02:00
runHook preInstall
2016-09-26 20:52:21 +02: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 14:57:43 +02:00
runHook postInstall
2016-09-26 20:52:21 +02:00
'';
2021-09-21 13:38:22 +02: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 13:15:42 +02:00
maintainers = with lib.maintainers; [ fridh jojosch ];
};
}