2021-02-05 17:12:51 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, beautifulsoup4, vcrpy, mock
|
2020-04-24 23:36:52 +00:00
|
|
|
, django-mailman3, mailmanclient, readme_renderer
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "postorius";
|
2021-04-05 15:23:46 +00:00
|
|
|
# Note: Mailman core must be on the latest version before upgrading Postorious.
|
|
|
|
# See: https://gitlab.com/mailman/postorius/-/issues/516#note_544571309
|
2021-03-09 03:18:52 +00:00
|
|
|
version = "1.3.4";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-03-09 03:18:52 +00:00
|
|
|
sha256 = "sha256-L2ApUGQNvR0UVvodVM+wMzjYLZkegI4fT4yUiU/cibU=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ django-mailman3 readme_renderer ];
|
|
|
|
checkInputs = [ beautifulsoup4 vcrpy mock ];
|
|
|
|
|
|
|
|
# Tries to connect to database.
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-03-09 03:18:52 +00:00
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://docs.mailman3.org/projects/postorius";
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Web-based user interface for managing GNU Mailman";
|
2021-03-09 03:18:52 +00:00
|
|
|
license = licenses.gpl3Plus;
|
2021-04-18 02:13:31 +00:00
|
|
|
maintainers = with maintainers; [ globin peti qyliss ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|