Unverified Commit d928451e authored by Moritz 'e1mo' Fromm's avatar Moritz 'e1mo' Fromm
Browse files

python3Packages.django-compression-middleware: init at 0.4.2

parent f8b026c4
Loading
Loading
Loading
Loading
+32 −0
Original line number Diff line number Diff line
{ lib
, fetchPypi
, buildPythonPackage
, django
, zstandard
, brotli
}:

buildPythonPackage rec {
  pname = "django-compression-middleware";
  version = "0.4.2";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-cdS80JVGz4h4MVCsZGfrQWhZlTR3Swm4Br4wFxOcKVs=";
  };

  propagatedBuildInputs = [
    django
    zstandard
    brotli
  ];

  meta = with lib; {
    description = "Django middleware to compress responses using several algorithms";
    homepage = "https://github.com/friedelwolff/django-compression-middleware";
    changelog = "https://github.com/friedelwolff/django-compression-middleware/releases/tag/v${version}";
    license = licenses.mpl20;
    maintainers = with maintainers; [ e1mo ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -2563,6 +2563,8 @@ self: super: with self; {

  django-compressor = callPackage ../development/python-modules/django-compressor { };

  django-compression-middleware = callPackage ../development/python-modules/django-compression-middleware { };

  django-configurations = callPackage ../development/python-modules/django-configurations { };

  django_contrib_comments = callPackage ../development/python-modules/django_contrib_comments { };