Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / django-webpack-loader / default.nix
blob3e849b48773918a7c826024486620f9e2d122ca4
1 { lib, buildPythonPackage, fetchPypi }:
3 buildPythonPackage rec {
4   pname = "django-webpack-loader";
5   version = "0.7.0";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "0izl6bibhz3v538ad5hl13lfr6kvprf62rcl77wq2i5538h8hg3s";
10   };
12   # django.core.exceptions.ImproperlyConfigured (path issue with DJANGO_SETTINGS_MODULE?)
13   doCheck = false;
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   };