about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTimo Kaufmann <timokau@zoho.com>2020-06-10 20:15:10 +0200
committerTimo Kaufmann <timokau@zoho.com>2020-06-10 20:15:10 +0200
commit700eed636c99de8a2a5f23cc20e745fc13a44bc2 (patch)
tree5290622ff0c05ffbd6ad2fa85010392307e80281
parent0710b5afecd55b059212d7d127a0b7625846661e (diff)
downloadnixlib-700eed636c99de8a2a5f23cc20e745fc13a44bc2.tar
nixlib-700eed636c99de8a2a5f23cc20e745fc13a44bc2.tar.gz
nixlib-700eed636c99de8a2a5f23cc20e745fc13a44bc2.tar.bz2
nixlib-700eed636c99de8a2a5f23cc20e745fc13a44bc2.tar.lz
nixlib-700eed636c99de8a2a5f23cc20e745fc13a44bc2.tar.xz
nixlib-700eed636c99de8a2a5f23cc20e745fc13a44bc2.tar.zst
nixlib-700eed636c99de8a2a5f23cc20e745fc13a44bc2.zip
python.pkgs.gidgethub: 3.2.0 -> 4.1.1
-rw-r--r--pkgs/development/python-modules/gidgethub/default.nix10
1 files changed, 7 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/gidgethub/default.nix b/pkgs/development/python-modules/gidgethub/default.nix
index 634d7c2ddc04..a9214cf49f70 100644
--- a/pkgs/development/python-modules/gidgethub/default.nix
+++ b/pkgs/development/python-modules/gidgethub/default.nix
@@ -11,22 +11,26 @@
 , tornado
 , aiohttp
 , uritemplate
+, pyjwt
 }:
 
 buildPythonPackage rec {
   pname = "gidgethub";
-  version = "3.2.0";
+  version = "4.1.1";
 
   disabled = pythonOlder "3.6";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "8f4b69063a256994d38243cc0eba4e1453017b5b8b04a173216d02d47ffc3989";
+    sha256 = "13nzc40c71kxvjxahgnc6c974xp5fpm02gqymwgfjbj2dmlzmayg";
   };
 
   nativeBuildInputs = [ setuptools pytestrunner ];
   checkInputs = [ pytest pytest-asyncio twisted treq tornado aiohttp ];
-  propagatedBuildInputs = [ uritemplate ];
+  propagatedBuildInputs = [
+    uritemplate
+    pyjwt
+  ];
 
   postPatch = ''
     substituteInPlace setup.py \