about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2022-11-20 01:19:25 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2022-11-20 01:19:25 +0100
commitaaca09386b0c8bf0a81ef28df296cadf1fc3fb8e (patch)
tree96ad7b243043e8cd95f39481b91db5e7a524ee0f
parentfc627062abbc4ef0a95516f2d727663f24479860 (diff)
python310Packages.django-webpack-loader: add missing input
-rw-r--r--pkgs/development/python-modules/django-webpack-loader/default.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/django-webpack-loader/default.nix b/pkgs/development/python-modules/django-webpack-loader/default.nix
index d1d5f926fdab8..67d6035696ed3 100644
--- a/pkgs/development/python-modules/django-webpack-loader/default.nix
+++ b/pkgs/development/python-modules/django-webpack-loader/default.nix
@@ -1,5 +1,6 @@
 { lib
 , buildPythonPackage
+, django
 , fetchPypi
 , pythonOlder
 }:
@@ -16,6 +17,10 @@ buildPythonPackage rec {
     hash = "sha256-agZTglc3cbr0AHVMTTnAkTsKKaRTqUHfuRIu6+0hVy8=";
   };
 
+  propagatedBuildInputs = [
+    django
+  ];
+
   # django.core.exceptions.ImproperlyConfigured (path issue with DJANGO_SETTINGS_MODULE?)
   doCheck = false;
 
@@ -26,7 +31,7 @@ buildPythonPackage rec {
   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 ];
+    maintainers = with maintainers; [ peterromfeldhk ];
   };
 }