mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 12:53:54 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
52 lines
1.4 KiB
Nix
52 lines
1.4 KiB
Nix
{ lib, python3, fetchPypi
|
|
, sassc, hyperkitty, postorius
|
|
, nixosTests
|
|
}:
|
|
|
|
with python3.pkgs;
|
|
|
|
buildPythonPackage rec {
|
|
pname = "mailman-web";
|
|
version = "0.0.8";
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-nN/L+X2Rvm6rqkscns4Tn2TAr59O5lCJObvcJp6M0+Q=";
|
|
};
|
|
|
|
postPatch = ''
|
|
# Django is depended on transitively by hyperkitty and postorius,
|
|
# and mailman_web has overly restrictive version bounds on it, so
|
|
# let's remove it.
|
|
sed -i '/^[[:space:]]*django/Id' setup.cfg
|
|
|
|
# Upstream seems to mostly target installing on top of existing
|
|
# distributions, and uses a path appropriate for that, but we are
|
|
# a distribution, so use a state directory appropriate for a
|
|
# distro package.
|
|
substituteInPlace mailman_web/settings/base.py \
|
|
--replace /opt/mailman/web /var/lib/mailman-web
|
|
'';
|
|
|
|
nativeBuildInputs = [ setuptools-scm ];
|
|
propagatedBuildInputs = [ hyperkitty postorius whoosh ];
|
|
|
|
# Tries to check runtime configuration.
|
|
doCheck = false;
|
|
|
|
makeWrapperArgs = [
|
|
"--suffix PATH : ${lib.makeBinPath [ sassc ]}"
|
|
];
|
|
|
|
passthru.tests = { inherit (nixosTests) mailman; };
|
|
|
|
meta = with lib; {
|
|
homepage = "https://gitlab.com/mailman/mailman-web";
|
|
description = "Django project for Mailman 3 web interface";
|
|
mainProgram = "mailman-web";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ qyliss m1cr0man ];
|
|
};
|
|
}
|