python3Packages.hyperkitty: 1.3.4 -> unstable-2021-10-08

Fixes the failing test suite.
This commit is contained in:
Martin Weinelt 2021-10-11 01:53:00 +02:00
parent 250fdc580c
commit b8144b632e

View File

@ -1,6 +1,6 @@
{ lib, buildPythonPackage, fetchPypi, isPy3k, isort, coverage, mock { lib, buildPythonPackage, fetchFromGitLab, isPy3k, isort, coverage, mock
, robot-detection, django_extensions, rjsmin, cssmin, django-mailman3 , robot-detection, django_extensions, rjsmin, cssmin, django-mailman3
, django-haystack, flufl_lock, networkx, python-dateutil, defusedxml , django-haystack, flufl_lock, mistune_2_0, networkx, python-dateutil, defusedxml
, django-paintstore, djangorestframework, django, django-q , django-paintstore, djangorestframework, django, django-q
, django_compressor, beautifulsoup4, six, psycopg2, whoosh, elasticsearch , django_compressor, beautifulsoup4, six, psycopg2, whoosh, elasticsearch
}: }:
@ -9,18 +9,24 @@ buildPythonPackage rec {
pname = "HyperKitty"; pname = "HyperKitty";
# Note: Mailman core must be on the latest version before upgrading HyperKitty. # Note: Mailman core must be on the latest version before upgrading HyperKitty.
# See: https://gitlab.com/mailman/postorius/-/issues/516#note_544571309 # See: https://gitlab.com/mailman/postorius/-/issues/516#note_544571309
version = "1.3.4"; #
# Update to next stable version > 1.3.4 that has fixed tests, see
# https://gitlab.com/mailman/django-mailman3/-/issues/48
version = "unstable-2021-10-08";
disabled = !isPy3k; disabled = !isPy3k;
src = fetchPypi { src = fetchFromGitLab {
inherit pname version; domain = "gitlab.com";
sha256 = "1lbh8n66fp3l5s0xvmvsbfvgs3z4knx0gwf0q117n2nfkslf13zp"; owner = "mailman";
repo = "hyperkitty";
rev = "ec9c8ed18798cf8f7e89dfaba0014dcdfa207f27";
sha256 = "12kxb6pra31f51yxzx010jk2wlacdsbyf6fbl1cczjgxgb4cpy4i";
}; };
nativeBuildInputs = [ isort ]; nativeBuildInputs = [ isort ];
propagatedBuildInputs = [ propagatedBuildInputs = [
robot-detection django_extensions rjsmin cssmin django-mailman3 robot-detection django_extensions rjsmin cssmin django-mailman3
django-haystack flufl_lock networkx python-dateutil defusedxml django-haystack flufl_lock mistune_2_0 networkx python-dateutil defusedxml
django-paintstore djangorestframework django django-q django-paintstore djangorestframework django django-q
django_compressor six psycopg2 isort django_compressor six psycopg2 isort
]; ];