Merge pull request #241850 from fabaff/pygithub-bump
python311Packages.pygithub: 1.59.0 -> 1.59.0
This commit is contained in:
commit
20b1a70706
1 changed files with 24 additions and 11 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue