98cedfb418
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-django-webpack-loader/versions
22 lines
613 B
Nix
22 lines
613 B
Nix
{ stdenv, lib, buildPythonPackage, fetchPypi }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "django-webpack-loader";
|
|
version = "0.6.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "087mspmx74qbcknpbksl66rsyin0dc5aglhjmmpk999pl2wvdfk0";
|
|
};
|
|
|
|
# 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 ];
|
|
};
|
|
}
|