15 buildPythonPackage rec {
16 pname = "django-libsass";
18 format = "setuptools";
20 src = fetchFromGitHub {
22 repo = "django-libsass";
23 rev = "refs/tags/v${version}";
24 hash = "sha256-54AlRVmit0rtG1jx7O+XyA1vXLHCfoNPjHkHCQaaybA=";
27 propagatedBuildInputs = [
32 nativeCheckInputs = [ django ];
36 ${python.interpreter} ./runtests.py
41 description = "Django-compressor filter to compile SASS files using libsass";
42 homepage = "https://github.com/torchbox/django-libsass";
43 changelog = "https://github.com/torchbox/django-libsass/blob/${src.rev}/CHANGELOG.txt";
44 license = licenses.bsd3;
45 maintainers = with maintainers; [ hexa ];