Loading pkgs/development/python-modules/django-compression-middleware/default.nix 0 → 100644 +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 ]; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -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 { }; Loading Loading
pkgs/development/python-modules/django-compression-middleware/default.nix 0 → 100644 +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 ]; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -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 { }; Loading