summary refs log tree commit diff
path: root/pkgs/development/python-modules/gidgethub
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2020-06-13 11:03:26 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2020-06-13 11:03:26 +0200
commit2e4b4e33002f28c0a2551c1cde09632ac2987008 (patch)
tree4e96356d858101b1f8dfecd528d4436e15506cb9 /pkgs/development/python-modules/gidgethub
parentc8d064eec16122db9a727c0bba971c2bf80a6bc0 (diff)
parent1523382160220d7cd1fc6a7ff91b6eeb8ce5dc02 (diff)
downloadnixpkgs-2e4b4e33002f28c0a2551c1cde09632ac2987008.tar
nixpkgs-2e4b4e33002f28c0a2551c1cde09632ac2987008.tar.gz
nixpkgs-2e4b4e33002f28c0a2551c1cde09632ac2987008.tar.bz2
nixpkgs-2e4b4e33002f28c0a2551c1cde09632ac2987008.tar.lz
nixpkgs-2e4b4e33002f28c0a2551c1cde09632ac2987008.tar.xz
nixpkgs-2e4b4e33002f28c0a2551c1cde09632ac2987008.tar.zst
nixpkgs-2e4b4e33002f28c0a2551c1cde09632ac2987008.zip
Merge staging-next into staging
Diffstat (limited to 'pkgs/development/python-modules/gidgethub')
-rw-r--r--pkgs/development/python-modules/gidgethub/default.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/gidgethub/default.nix b/pkgs/development/python-modules/gidgethub/default.nix
index b72440c286a..f3b3c8d5df3 100644
--- a/pkgs/development/python-modules/gidgethub/default.nix
+++ b/pkgs/development/python-modules/gidgethub/default.nix
@@ -11,6 +11,7 @@
 , tornado
 , aiohttp
 , uritemplate
+, pyjwt
 }:
 
 buildPythonPackage rec {
@@ -26,7 +27,10 @@ buildPythonPackage rec {
 
   nativeBuildInputs = [ setuptools pytestrunner ];
   checkInputs = [ pytest pytest-asyncio twisted treq tornado aiohttp ];
-  propagatedBuildInputs = [ uritemplate ];
+  propagatedBuildInputs = [
+    uritemplate
+    pyjwt
+  ];
 
   postPatch = ''
     substituteInPlace setup.py \