2019-12-16 18:06:10 +00:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, isort, coverage, mock
|
2019-08-30 12:23:02 +00:00
|
|
|
, robot-detection, django_extensions, rjsmin, cssmin, django-mailman3
|
2019-12-16 18:06:10 +00:00
|
|
|
, django-haystack, flufl_lock, networkx, dateutil, defusedxml
|
2019-08-30 12:23:02 +00:00
|
|
|
, django-paintstore, djangorestframework, django, django-q
|
2019-12-16 18:06:10 +00:00
|
|
|
, django_compressor, beautifulsoup4, six, psycopg2, whoosh, elasticsearch
|
2019-08-30 12:23:02 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "HyperKitty";
|
2019-12-16 18:06:10 +00:00
|
|
|
version = "1.3.2";
|
2019-08-30 12:23:02 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-12-16 18:06:10 +00:00
|
|
|
sha256 = "092fkv0xyf5vgj33xwq0mh9h5c5d56ifwimaqbfpx5cwc6yivb88";
|
2019-08-30 12:23:02 +00:00
|
|
|
};
|
|
|
|
|
2019-12-16 18:06:10 +00:00
|
|
|
nativeBuildInputs = [ isort ];
|
2019-08-30 12:23:02 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
robot-detection django_extensions rjsmin cssmin django-mailman3
|
2019-12-16 18:06:10 +00:00
|
|
|
django-haystack flufl_lock networkx dateutil defusedxml
|
2019-08-30 12:23:02 +00:00
|
|
|
django-paintstore djangorestframework django django-q
|
2020-01-17 01:57:13 +00:00
|
|
|
django_compressor six psycopg2 isort
|
2019-08-30 12:23:02 +00:00
|
|
|
];
|
|
|
|
|
2020-01-17 01:57:13 +00:00
|
|
|
# Some of these are optional runtime dependencies that are not
|
|
|
|
# listed as dependencies in setup.py. To use these, they should be
|
|
|
|
# dependencies of the Django Python environment, but not of
|
|
|
|
# HyperKitty so they're not included for people who don't need them.
|
|
|
|
checkInputs = [ beautifulsoup4 coverage elasticsearch mock whoosh ];
|
|
|
|
|
2019-08-30 12:23:02 +00:00
|
|
|
checkPhase = ''
|
|
|
|
cd $NIX_BUILD_TOP/$sourceRoot
|
|
|
|
PYTHONPATH=.:$PYTHONPATH python example_project/manage.py test \
|
|
|
|
--settings=hyperkitty.tests.settings_test hyperkitty
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = "http://www.gnu.org/software/mailman/";
|
|
|
|
description = "Archiver for GNU Mailman v3";
|
|
|
|
license = stdenv.lib.licenses.gpl3;
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ peti globin ];
|
|
|
|
};
|
|
|
|
}
|