diff --git a/pkgs/development/python-modules/django-compressor/default.nix b/pkgs/development/python-modules/django-compressor/default.nix index 0df2ebc96239..788eab0ae326 100644 --- a/pkgs/development/python-modules/django-compressor/default.nix +++ b/pkgs/development/python-modules/django-compressor/default.nix @@ -11,21 +11,15 @@ buildPythonPackage rec { pname = "django-compressor"; - version = "4.3.1"; + version = "4.4"; format = "setuptools"; src = fetchPypi { pname = "django_compressor"; inherit version; - hash = "sha256-aIWMDabMCZzCmgIthsO6iu0RTanXCe7OsNe4GBtfiUI="; + hash = "sha256-GwrMnPup9pvDjnxB2psNcKILyVWHtkP/75YJz0YGT2c="; }; - postPatch = '' - substituteInPlace setup.py \ - --replace "rcssmin == 1.1.0" "rcssmin>=1.1.0" \ - --replace "rjsmin == 1.2.0" "rjsmin>=1.2.0" - ''; - propagatedBuildInputs = [ rcssmin rjsmin @@ -48,7 +42,8 @@ buildPythonPackage rec { meta = with lib; { description = "Compresses linked and inline JavaScript or CSS into single cached files"; - homepage = "https://django-compressor.readthedocs.org/en/latest/"; + homepage = "https://django-compressor.readthedocs.org/"; + changelog = "https://github.com/django-compressor/django-compressor/blob/${version}/docs/changelog.txt"; license = licenses.mit; maintainers = with maintainers; [ desiderius ]; };