python3Packages.postorius: 1.3.3 -> 1.3.4

This commit is contained in:
Fabian Affolter 2021-02-24 11:50:07 +01:00
parent 41405995d6
commit 8a20e93b50
1 changed files with 6 additions and 6 deletions

View File

@ -4,11 +4,11 @@
buildPythonPackage rec {
pname = "postorius";
version = "1.3.3";
version = "1.3.4";
src = fetchPypi {
inherit pname version;
sha256 = "08jn23gblbkfl09qlykbpsmp39mmach3sl69h1j5cd5kkx839rwa";
sha256 = "sha256-L2ApUGQNvR0UVvodVM+wMzjYLZkegI4fT4yUiU/cibU=";
};
propagatedBuildInputs = [ django-mailman3 readme_renderer ];
@ -17,10 +17,10 @@ buildPythonPackage rec {
# Tries to connect to database.
doCheck = false;
meta = {
homepage = "https://www.gnu.org/software/mailman/";
meta = with lib; {
homepage = "https://docs.mailman3.org/projects/postorius";
description = "Web-based user interface for managing GNU Mailman";
license = lib.licenses.gpl3;
maintainers = with lib.maintainers; [ globin peti ];
license = licenses.gpl3Plus;
maintainers = with maintainers; [ globin peti ];
};
}