nixpkgs/pkgs/servers/mail/mailman/postorius.nix

29 lines
887 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi, beautifulsoup4, vcrpy, mock
2020-01-17 02:22:28 +00:00
, django-mailman3, mailmanclient, readme_renderer
2019-08-26 15:41:02 +00:00
}:
buildPythonPackage rec {
pname = "postorius";
# Note: Mailman core must be on the latest version before upgrading Postorious.
# See: https://gitlab.com/mailman/postorius/-/issues/516#note_544571309
version = "1.3.4";
2019-08-26 15:41:02 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "sha256-L2ApUGQNvR0UVvodVM+wMzjYLZkegI4fT4yUiU/cibU=";
2019-08-26 15:41:02 +00:00
};
2020-01-17 02:22:28 +00:00
propagatedBuildInputs = [ django-mailman3 readme_renderer ];
checkInputs = [ beautifulsoup4 vcrpy mock ];
2019-08-26 15:41:02 +00:00
2020-01-17 02:22:28 +00:00
# Tries to connect to database.
doCheck = false;
2019-08-26 15:41:02 +00:00
meta = with lib; {
homepage = "https://docs.mailman3.org/projects/postorius";
2019-08-26 15:41:02 +00:00
description = "Web-based user interface for managing GNU Mailman";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ globin peti qyliss ];
2019-08-26 15:41:02 +00:00
};
}