Merge pull request #278786 from Stunkymonkey/github3.py-normalize

python311Packages.github3-py: rename from github3_py
This commit is contained in:
Martin Weinelt 2024-01-05 00:16:05 +01:00 committed by GitHub
commit 1578564b07
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 21 additions and 6 deletions

View File

@ -9,25 +9,31 @@
, pytestCheckHook
, betamax
, betamax-matchers
, hatchling
, fetchpatch
}:
buildPythonPackage rec {
pname = "github3.py";
version = "3.2.0";
format = "setuptools";
version = "4.0.1";
format = "pyproject";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-Cbcr4Ul9NGsJaM3oNgoNavedwgbQFJpjzT7IbGXDd8w=";
hash = "sha256-MNVxB2dT78OJ7cf5qu8zik/LJLVNiWjV85sTQvRd3TY=";
};
nativeBuildInputs = [
hatchling
];
propagatedBuildInputs = [
pyjwt
python-dateutil
requests
uritemplate
python-dateutil
pyjwt
]
++ pyjwt.optional-dependencies.crypto;
@ -37,6 +43,14 @@ buildPythonPackage rec {
betamax-matchers
];
patches = [
(fetchpatch {
# disable tests with "AttributeError: 'MockHTTPResponse' object has no attribute 'close'", due to betamax
url = "https://github.com/sigmavirus24/github3.py/commit/9d6124c09b0997b5e83579549bcf22b3e901d7e5.patch";
hash = "sha256-8Z4vN7iKl/sOcEJptsH5jsqijZgvL6jS7kymZ8+m6bY=";
})
];
# Solves "__main__.py: error: unrecognized arguments: -nauto"
preCheck = ''
rm tox.ini

View File

@ -175,6 +175,7 @@ mapAliases ({
GeoIP = geoip; # added 2023-02-19
gigalixir = throw "gigalixir has been promoted to a top-level attribute"; # Added 2022-10-02
gitdb2 = throw "gitdb2 has been deprecated, use gitdb instead."; # added 2020-03-14
github3_py = github3-py; # added 2024-01-04
GitPython = gitpython; # added 2022-10-28
glances = throw "glances has moved to pkgs.glances"; # added 2020-20-28
glasgow = throw "glasgow has been promoted to a top-level attribute"; # added 2023-02-05

View File

@ -4589,7 +4589,7 @@ self: super: with self; {
github-webhook = callPackage ../development/python-modules/github-webhook { };
github3_py = callPackage ../development/python-modules/github3_py { };
github3-py = callPackage ../development/python-modules/github3-py { };
gitignore-parser = callPackage ../development/python-modules/gitignore-parser { };