1{ lib 2, buildPythonPackage 3, django 4, fetchPypi 5, pythonOlder 6}: 7 8buildPythonPackage rec { 9 pname = "django-webpack-loader"; 10 version = "2.0.1"; 11 format = "setuptools"; 12 13 disabled = pythonOlder "3.7"; 14 15 src = fetchPypi { 16 inherit pname version; 17 hash = "sha256-Do37L82znb/QG+dgPAYBMqRmT0g4Ec48dfLTwNOat2I="; 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 changelog = "https://github.com/django-webpack/django-webpack-loader/blob/${version}/CHANGELOG.md"; 35 license = with licenses; [ mit ]; 36 maintainers = with maintainers; [ peterromfeldhk ]; 37 }; 38}