Merge pull request #114218 from fabaff/bump-readme_renderer

python3Packages.readme_renderer: 28.0 -> 29.0
This commit is contained in:
Fabian Affolter
2021-03-03 07:41:10 +01:00
committed by GitHub
3 changed files with 35 additions and 28 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 ];
};
}