diff options
author | stuebinm | 2024-11-24 23:44:30 +0100 |
---|---|---|
committer | stuebinm | 2024-11-24 23:44:30 +0100 |
commit | 06c6dae0756f1023bbb225c1d70dc5e92dc31808 (patch) | |
tree | 2a82766a85073226787a36e5332b8c006080bcdf /pkgs/overlay.nix | |
parent | 65cdc955efa657ec2923c6338a89b8bf6b334e7c (diff) |
pkgs/bookwyrm: 0.7.2 → 0.7.4
passes the basic smoke test, nothing else done (doing this to distract
myself & since people expressed interest in maybe trying to run an
instance again).
Diffstat (limited to 'pkgs/overlay.nix')
-rw-r--r-- | pkgs/overlay.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/overlay.nix b/pkgs/overlay.nix index 679fef8..3f6c6a7 100644 --- a/pkgs/overlay.nix +++ b/pkgs/overlay.nix @@ -263,12 +263,12 @@ in #### packaged mostly as shitpost / to play around with #### bookwyrm = (self.callPackage ./bookwyrm.nix { - python = super.python311.override ({ + python = super.python312.override ({ packageOverrides = self: super: { - django = super.django_3; - python-crontab = super.python-crontab.overridePythonAttrs (_: { doCheck = false; }); django-sass-processor = self.callPackage ./python/django-sass-processor.nix {}; django-imagekit = self.callPackage ./python/django-imagekit.nix {}; + django-pgtrigger = self.callPackage ./python/django-pgtrigger.nix {}; + s3-tar = self.callPackage ./python/s3-tar.nix {}; bw-file-resubmit = self.callPackage ./python/bw-file-resubmit.nix {}; }; }); |