linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / django_compressor / default.nix
blobedf5faa5af40b9da2f16069fdd4d35d71bc41ef0
1 { lib, buildPythonPackage, fetchPypi,
2   rcssmin, rjsmin, django_appconf }:
3 buildPythonPackage rec {
4     pname = "django_compressor";
5     version = "2.4";
7     src = fetchPypi {
8       inherit pname version;
9       sha256 = "0kx7bclfa0sxlsz6ka70zr9ra00lks0hmv1kc99wbanx6xhirvfj";
10     };
11     postPatch = ''
12       substituteInPlace setup.py --replace 'rcssmin == 1.0.6' 'rcssmin' \
13         --replace 'rjsmin == 1.0.12' 'rjsmin'
14     '';
16     # requires django-sekizai, which we don't have packaged yet
17     doCheck = false;
19     propagatedBuildInputs = [ rcssmin rjsmin django_appconf ];
21     meta = with lib; {
22       description = "Compresses linked and inline JavaScript or CSS into single cached files";
23       homepage = "https://django-compressor.readthedocs.org/en/latest/";
24       license = licenses.mit;
25       maintainers = with maintainers; [ desiderius ];
26     };