about summary refs log tree commit diff
path: root/pkgs/development/python-modules/auth0-python
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2021-06-19 14:31:56 -0700
committerMartin Weinelt <hexa@darmstadt.ccc.de>2021-06-22 13:42:52 +0200
commitcc8f0107f3dfa67119418b943347672be91c73e6 (patch)
treec09577d71923faa8ecdba121df65e9a7791b8def /pkgs/development/python-modules/auth0-python
parentca39fad30143e4643562a14033dc2add79efd5d0 (diff)
python3Packages.auth0-python: fix build, add missing dep
Diffstat (limited to 'pkgs/development/python-modules/auth0-python')
-rw-r--r--pkgs/development/python-modules/auth0-python/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/auth0-python/default.nix b/pkgs/development/python-modules/auth0-python/default.nix
index 4134e6ea24f93..10ad9c5a30151 100644
--- a/pkgs/development/python-modules/auth0-python/default.nix
+++ b/pkgs/development/python-modules/auth0-python/default.nix
@@ -3,6 +3,7 @@
 , fetchPypi
 , requests
 , mock
+, pyjwt
 , pytestCheckHook
 }:
 
@@ -17,6 +18,7 @@ buildPythonPackage rec {
 
   propagatedBuildInputs = [
     requests
+    pyjwt
   ];
 
   checkInputs = [