1{ lib 2, buildPythonPackage 3, django 4, fetchPypi 5, pythonOlder 6}: 7 8buildPythonPackage rec { 9 pname = "django-webpack-loader"; 10 version = "1.7.0"; 11 format = "setuptools"; 12 13 disabled = pythonOlder "3.7"; 14 15 src = fetchPypi { 16 inherit pname version; 17 hash = "sha256-agZTglc3cbr0AHVMTTnAkTsKKaRTqUHfuRIu6+0hVy8="; 18 }; 19 20 propagatedBuildInputs = [ 21 django 22 ]; 23 24 # django.core.exceptions.ImproperlyConfigured (path issue with DJANGO_SETTINGS_MODULE?) 25 doCheck = false; 26 27 pythonImportsCheck = [ 28 "webpack_loader" 29 ]; 30 31 meta = with lib; { 32 description = "Use webpack to generate your static bundles"; 33 homepage = "https://github.com/owais/django-webpack-loader"; 34 license = with licenses; [ mit ]; 35 maintainers = with maintainers; [ peterromfeldhk ]; 36 }; 37}