about summary refs log tree commit diff
diff options
context:
space:
mode:
authorocfox <i@ocfox.me>2024-02-11 21:29:11 +0800
committerocfox <i@ocfox.me>2024-02-11 21:29:11 +0800
commite65189881746837a48f24fff46ee5a999d0da04f (patch)
treeb091b13ced96763a7850e5ec900bb29b10fb5128
parent0dc186716d75fcea44ec5ae33d6a9540015072a3 (diff)
downloadnixlib-e65189881746837a48f24fff46ee5a999d0da04f.tar
nixlib-e65189881746837a48f24fff46ee5a999d0da04f.tar.gz
nixlib-e65189881746837a48f24fff46ee5a999d0da04f.tar.bz2
nixlib-e65189881746837a48f24fff46ee5a999d0da04f.tar.lz
nixlib-e65189881746837a48f24fff46ee5a999d0da04f.tar.xz
nixlib-e65189881746837a48f24fff46ee5a999d0da04f.tar.zst
nixlib-e65189881746837a48f24fff46ee5a999d0da04f.zip
python311Packages.starlette-wtf: fix build
-rw-r--r--pkgs/development/python-modules/starlette-wtf/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/starlette-wtf/default.nix b/pkgs/development/python-modules/starlette-wtf/default.nix
index 113c1442a99e..3ca744a71f2f 100644
--- a/pkgs/development/python-modules/starlette-wtf/default.nix
+++ b/pkgs/development/python-modules/starlette-wtf/default.nix
@@ -6,6 +6,8 @@
 , python-multipart
 , starlette
 , wtforms
+, httpx
+, jinja2
 , pytestCheckHook
 }:
 
@@ -33,6 +35,8 @@ buildPythonPackage rec {
 
   nativeCheckInputs = [
     pytestCheckHook
+    httpx
+    jinja2
   ];
 
   meta = with lib; {