18 buildPythonPackage rec {
19 pname = "django-compressor";
21 format = "setuptools";
24 pname = "django_compressor";
26 hash = "sha256-GwrMnPup9pvDjnxB2psNcKILyVWHtkP/75YJz0YGT2c=";
29 propagatedBuildInputs = [
47 # Getting error: compressor.exceptions.OfflineGenerationError: You have
48 # offline compression enabled but key "..." is missing from offline manifest.
49 # You may need to run "python manage.py compress"
51 "compressor/tests/test_offline.py"
54 pythonImportsCheck = [ "compressor" ];
56 DJANGO_SETTINGS_MODULE = "compressor.test_settings";
59 description = "Compresses linked and inline JavaScript or CSS into single cached files";
60 homepage = "https://django-compressor.readthedocs.org/";
61 changelog = "https://github.com/django-compressor/django-compressor/blob/${version}/docs/changelog.txt";
62 license = licenses.mit;
63 maintainers = with maintainers; [ desiderius ];