Skip to content

Commit

Permalink
python3Packages.hyperkitty: 1.3.4 -> unstable-2021-10-08
Browse files Browse the repository at this point in the history
Fixes the failing test suite.
  • Loading branch information
mweinelt committed Oct 10, 2021
1 parent 250fdc5 commit b8144b6
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions pkgs/servers/mail/mailman/hyperkitty.nix
Original file line number Diff line number Diff line change
@@ -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
, 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_compressor, beautifulsoup4, six, psycopg2, whoosh, elasticsearch
}:
Expand All @@ -9,18 +9,24 @@ buildPythonPackage rec {
pname = "HyperKitty";
# Note: Mailman core must be on the latest version before upgrading HyperKitty.
# 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;

src = fetchPypi {
inherit pname version;
sha256 = "1lbh8n66fp3l5s0xvmvsbfvgs3z4knx0gwf0q117n2nfkslf13zp";
src = fetchFromGitLab {
domain = "gitlab.com";
owner = "mailman";
repo = "hyperkitty";
rev = "ec9c8ed18798cf8f7e89dfaba0014dcdfa207f27";
sha256 = "12kxb6pra31f51yxzx010jk2wlacdsbyf6fbl1cczjgxgb4cpy4i";
};

nativeBuildInputs = [ isort ];
propagatedBuildInputs = [
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_compressor six psycopg2 isort
];
Expand Down

0 comments on commit b8144b6

Please sign in to comment.