pythonPackages.django_compressor: fix build, flesh out comments

This commit is contained in:
Robert Scott 2019-06-16 15:43:17 +01:00 committed by Frederik Rietdijk
parent 8e709be9ba
commit 0bbfd2d2dc

View file

@ -8,8 +8,12 @@ buildPythonPackage rec {
inherit pname version;
sha256 = "9616570e5b08e92fa9eadc7a1b1b49639cce07ef392fc27c74230ab08075b30f";
};
postPatch = ''
substituteInPlace setup.py --replace 'rcssmin == 1.0.6' 'rcssmin' \
--replace 'rjsmin == 1.0.12' 'rjsmin'
'';
# Need to setup django testing
# requires django-sekizai, which we don't have packaged yet
doCheck = false;
propagatedBuildInputs = [ rcssmin rjsmin django_appconf ];