Merge pull request #241850 from fabaff/pygithub-bump

python311Packages.pygithub: 1.59.0 -> 1.59.0
This commit is contained in:
Fabian Affolter 2023-07-06 21:52:13 +02:00 committed by GitHub
commit 20b1a70706
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,38 +1,51 @@
{ lib
, buildPythonPackage
, cryptography
, deprecated
, fetchFromGitHub
, pynacl
, typing-extensions
, pyjwt
, python-dateutil
, pythonOlder
, requests
, setuptools-scm
}:
buildPythonPackage rec {
pname = "pygithub";
version = "1.58.0";
version = "1.59.0";
format = "setuptools";
disabled = pythonOlder "3.6";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "PyGithub";
repo = "PyGithub";
rev = "refs/tags/v${version}";
hash = "sha256-DZmKF0C5zexTQ/kbDtTg0FLEocNU4dYMOFCJyvuiV98=";
hash = "sha256-bfXf1lwTpoyf6Pn4J0KR99xUh28VPszlbcYSbqKfyFQ=";
};
propagatedBuildInputs = [
cryptography
deprecated
pynacl
pyjwt
requests
SETUPTOOLS_SCM_PRETEND_VERSION = version;
nativeBuildInputs = [
setuptools-scm
];
propagatedBuildInputs = [
deprecated
pyjwt
pynacl
python-dateutil
requests
typing-extensions
] ++ pyjwt.optional-dependencies.crypto;
# 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";