about summary refs log tree commit diff
path: root/pkgs/servers/sabnzbd
diff options
context:
space:
mode:
authorAdam Stephens <2071575+adamcstephens@users.noreply.github.com>2023-08-13 07:21:29 -0400
committerGitHub <noreply@github.com>2023-08-13 13:21:29 +0200
commitd8b50ae3197b0a12984e23321c59e67886706d97 (patch)
treed7c0cb3f0b55469558e0fa7661910657b88eea3b /pkgs/servers/sabnzbd
parent393fe6ccd0ea77f9080f051f6d6462815338e1a3 (diff)
downloadnixlib-d8b50ae3197b0a12984e23321c59e67886706d97.tar
nixlib-d8b50ae3197b0a12984e23321c59e67886706d97.tar.gz
nixlib-d8b50ae3197b0a12984e23321c59e67886706d97.tar.bz2
nixlib-d8b50ae3197b0a12984e23321c59e67886706d97.tar.lz
nixlib-d8b50ae3197b0a12984e23321c59e67886706d97.tar.xz
nixlib-d8b50ae3197b0a12984e23321c59e67886706d97.tar.zst
nixlib-d8b50ae3197b0a12984e23321c59e67886706d97.zip
sabnbzd: 3.7.2 -> 4.0.3 (#248411)
* sabctools: init at 7.0.2

* sabnbzd: 3.7.2 -> 4.0.3
Diffstat (limited to 'pkgs/servers/sabnzbd')
-rw-r--r--pkgs/servers/sabnzbd/default.nix37
1 files changed, 30 insertions, 7 deletions
diff --git a/pkgs/servers/sabnzbd/default.nix b/pkgs/servers/sabnzbd/default.nix
index a0a6eb72e743..67b55dd23f06 100644
--- a/pkgs/servers/sabnzbd/default.nix
+++ b/pkgs/servers/sabnzbd/default.nix
@@ -1,37 +1,60 @@
 { lib, stdenv
+, coreutils
 , fetchFromGitHub
 , python3
 , par2cmdline
 , unzip
 , unrar
 , p7zip
+, util-linux
 , makeWrapper
 , nixosTests
 }:
 
 let
   pythonEnv = python3.withPackages(ps: with ps; [
+    babelfish
+    cffi
     chardet
     cheetah3
+    cheroot
     cherrypy
-    cryptography
     configobj
+    cryptography
     feedparser
-    sabyenc3
-    puremagic
     guessit
+    jaraco-classes
+    jaraco-collections
+    jaraco-context
+    jaraco-functools
+    jaraco-text
+    more-itertools
+    notify2
+    orjson
+    portend
+    puremagic
+    pycparser
     pysocks
+    python-dateutil
+    pytz
+    rebulk
+    sabctools
+    sabyenc3
+    sgmllib3k
+    six
+    tempora
+    zc_lockfile
   ]);
-  path = lib.makeBinPath [ par2cmdline unrar unzip p7zip ];
+  path = lib.makeBinPath [ coreutils par2cmdline unrar unzip p7zip util-linux ];
 in stdenv.mkDerivation rec {
-  version = "3.7.2";
+  version = "4.0.3";
   pname = "sabnzbd";
 
   src = fetchFromGitHub {
     owner = pname;
     repo = pname;
     rev = version;
-    sha256 = "sha256-1gGvdc6TJrkFIrN+TUL/7EejApgpgAQxnQbp8RMknHQ=";
+    sha256 = "sha256-6d/UGFuySgKvpqhGjzl007GS9yMgfgI3YwTxkxsCzew=";
   };
 
   nativeBuildInputs = [ makeWrapper ];
@@ -59,6 +82,6 @@ in stdenv.mkDerivation rec {
     homepage = "https://sabnzbd.org";
     license = licenses.gpl2Plus;
     platforms = platforms.linux;
-    maintainers = with lib.maintainers; [ fridh jojosch ];
+    maintainers = with lib.maintainers; [ fridh jojosch adamcstephens ];
   };
 }