about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyGithub
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-01-15 11:14:23 +0100
committerGitHub <noreply@github.com>2021-01-15 11:14:23 +0100
commitdc7dd232418af69d9e0ef994e3a5ab9c485e6445 (patch)
treef5943b6a592039ca42427723986177b4c9cca19d /pkgs/development/python-modules/pyGithub
parent65aca46e9e300b7f8d4451926449283b82330b41 (diff)
parentca903403330dd0e066a92aee6b1b80b45feb7eb4 (diff)
Merge pull request #108792 from wamserma/bump-pygithub
pythonPackages.PyGithub: 1.51 -> 1.54.1
Diffstat (limited to 'pkgs/development/python-modules/pyGithub')
-rw-r--r--pkgs/development/python-modules/pyGithub/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/pyGithub/default.nix b/pkgs/development/python-modules/pyGithub/default.nix
index e30ecb95765b1..f53cc45b9fe7e 100644
--- a/pkgs/development/python-modules/pyGithub/default.nix
+++ b/pkgs/development/python-modules/pyGithub/default.nix
@@ -12,14 +12,14 @@
 
 buildPythonPackage rec {
   pname = "PyGithub";
-  version = "1.51";
+  version = "1.54.1";
   disabled = !isPy3k;
 
   src = fetchFromGitHub {
     owner = "PyGithub";
     repo = "PyGithub";
     rev = "v${version}";
-    sha256 = "1hz5fc3rkryl4vzxmmwx75p25wk0ida54lf6bz7261rm5hb05r7j";
+    sha256 = "1nl74bp5ikdnrc8xq0qr25ryl1mvarf0xi43k8w5jzlrllhq0nkq";
   };
 
   checkInputs = [ httpretty parameterized pytestCheckHook ];