pythonPackages.django-webpack-loader: init at 0.2.4
This commit is contained in:
parent
3ddc3e4217
commit
f5bad02ac7
@ -0,0 +1,21 @@
|
|||||||
|
{ stdenv, lib, buildPythonPackage, fetchPypi }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "django-webpack-loader";
|
||||||
|
version = "0.2.4";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "1bwpgmkh32d7a5dgppin9m0mnh8a33ccl5ksnpw5vjp4lal3xq73";
|
||||||
|
};
|
||||||
|
|
||||||
|
# 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -2779,6 +2779,8 @@ in {
|
|||||||
|
|
||||||
django-sr = callPackage ../development/python-modules/django-sr { };
|
django-sr = callPackage ../development/python-modules/django-sr { };
|
||||||
|
|
||||||
|
django-webpack-loader = callPackage ../development/python-modules/django-webpack-loader { };
|
||||||
|
|
||||||
django_tagging = callPackage ../development/python-modules/django_tagging { };
|
django_tagging = callPackage ../development/python-modules/django_tagging { };
|
||||||
|
|
||||||
django_tagging_0_4_3 = if
|
django_tagging_0_4_3 = if
|
||||||
|
Loading…
Reference in New Issue
Block a user