biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / servers / mail / mailman / web.nix
blobdc5ef230c235a4eb462da742f8f9a021887c2327
1 { lib, python3, fetchPypi
2 , sassc, hyperkitty, postorius
3 , nixosTests
4 }:
6 with python3.pkgs;
8 buildPythonPackage rec {
9   pname = "mailman-web";
10   version = "0.0.8";
11   disabled = pythonOlder "3.8";
13   src = fetchPypi {
14     inherit pname version;
15     hash = "sha256-nN/L+X2Rvm6rqkscns4Tn2TAr59O5lCJObvcJp6M0+Q=";
16   };
18   postPatch = ''
19     # Django is depended on transitively by hyperkitty and postorius,
20     # and mailman_web has overly restrictive version bounds on it, so
21     # let's remove it.
22     sed -i '/^[[:space:]]*django/Id' setup.cfg
24     # Upstream seems to mostly target installing on top of existing
25     # distributions, and uses a path appropriate for that, but we are
26     # a distribution, so use a state directory appropriate for a
27     # distro package.
28     substituteInPlace mailman_web/settings/base.py \
29         --replace /opt/mailman/web /var/lib/mailman-web
30   '';
32   nativeBuildInputs = [ setuptools-scm ];
33   propagatedBuildInputs = [ hyperkitty postorius whoosh ];
35   # Tries to check runtime configuration.
36   doCheck = false;
38   makeWrapperArgs = [
39     "--suffix PATH : ${lib.makeBinPath [ sassc ]}"
40   ];
42   passthru.tests = { inherit (nixosTests) mailman; };
44   meta = with lib; {
45     homepage = "https://gitlab.com/mailman/mailman-web";
46     description = "Django project for Mailman 3 web interface";
47     mainProgram = "mailman-web";
48     license = licenses.gpl3Plus;
49     maintainers = with maintainers; [ qyliss m1cr0man ];
50   };