summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/pygithub/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/pygithub/default.nix')
-rw-r--r--pkgs/development/python-modules/pygithub/default.nix29
1 files changed, 14 insertions, 15 deletions
diff --git a/pkgs/development/python-modules/pygithub/default.nix b/pkgs/development/python-modules/pygithub/default.nix
index 926f16c46af3..843fce747184 100644
--- a/pkgs/development/python-modules/pygithub/default.nix
+++ b/pkgs/development/python-modules/pygithub/default.nix
@@ -1,15 +1,16 @@
-{ lib
-, buildPythonPackage
-, deprecated
-, fetchFromGitHub
-, pynacl
-, typing-extensions
-, pyjwt
-, pythonOlder
-, requests
-, setuptools
-, setuptools-scm
-, urllib3
+{
+ lib,
+ buildPythonPackage,
+ deprecated,
+ fetchFromGitHub,
+ pynacl,
+ typing-extensions,
+ pyjwt,
+ pythonOlder,
+ requests,
+ setuptools,
+ setuptools-scm,
+ urllib3,
}:
buildPythonPackage rec {
@@ -43,9 +44,7 @@ buildPythonPackage rec {
# Test suite makes REST calls against github.com
doCheck = false;
- pythonImportsCheck = [
- "github"
- ];
+ pythonImportsCheck = [ "github" ];
meta = with lib; {
description = "Python library to access the GitHub API v3";