pythonPackages.django-webpack-loader: init at 0.2.4

This commit is contained in:
Peter Romfeld 2019-02-01 12:49:27 +08:00 committed by Frederik Rietdijk
parent 3ddc3e4217
commit f5bad02ac7
2 changed files with 23 additions and 0 deletions

View file

@ -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 ];
};
}

View file

@ -2779,6 +2779,8 @@ in {
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_0_4_3 = if