14 buildPythonPackage rec {
15 pname = "django-libsass";
17 format = "setuptools";
19 src = fetchFromGitHub {
21 repo = "django-libsass";
22 rev = "refs/tags/v${version}";
23 hash = "sha256-54AlRVmit0rtG1jx7O+XyA1vXLHCfoNPjHkHCQaaybA=";
26 propagatedBuildInputs = [
37 ${python.interpreter} ./runtests.py
42 description = "A django-compressor filter to compile SASS files using libsass";
43 homepage = "https://github.com/torchbox/django-libsass";
44 changelog = "https://github.com/torchbox/django-libsass/blob/${src.rev}/CHANGELOG.txt";
45 license = licenses.bsd3;
46 maintainers = with maintainers; [ hexa ];