1{ lib, buildPythonPackage, fetchPypi }:
2
3buildPythonPackage rec {
4 pname = "django-webpack-loader";
5 version = "1.4.1";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "7e34085b7fc4d352e482ff9cf7d09ae4524e730675e25432ab1d25a2dd94e583";
10 };
11
12 # django.core.exceptions.ImproperlyConfigured (path issue with DJANGO_SETTINGS_MODULE?)
13 doCheck = false;
14
15 meta = with lib; {
16 description = "Use webpack to generate your static bundles";
17 homepage = "https://github.com/owais/django-webpack-loader";
18 maintainers = with maintainers; [ peterromfeldhk ];
19 license = with licenses; [ mit ];
20 };
21}