2019-02-01 04:49:27 +00:00
|
|
|
{ stdenv, lib, buildPythonPackage, fetchPypi }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "django-webpack-loader";
|
2019-08-20 10:55:40 +01:00
|
|
|
version = "0.6.0";
|
2019-02-01 04:49:27 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-08-20 10:55:40 +01:00
|
|
|
sha256 = "087mspmx74qbcknpbksl66rsyin0dc5aglhjmmpk999pl2wvdfk0";
|
2019-02-01 04:49:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
# django.core.exceptions.ImproperlyConfigured (path issue with DJANGO_SETTINGS_MODULE?)
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Use webpack to generate your static bundles";
|
|
|
|
homepage = https://github.com/owais/django-webpack-loader;
|
|
|
|
maintainers = with maintainers; [ peterromfeldhk ];
|
|
|
|
license = with licenses; [ mit ];
|
|
|
|
};
|
|
|
|
}
|