summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2022-11-05 10:43:12 -0500
committerGitHub <noreply@github.com>2022-11-05 10:43:12 -0500
commitec7b326518ca6fcd1883fea9a6b5b8c9ba2668e7 (patch)
treecce729336ff6c8f9593c4c16bcdf11e2584c5b43
parentMerge pull request #199472 from boppyt/lite-xl (diff)
parentpython310Packages.PyGithub: add format attribute (diff)
downloadnixpkgs-ec7b326518ca6fcd1883fea9a6b5b8c9ba2668e7.tar.gz
Merge pull request #199672 from r-ryantm/auto-update/python310Packages.PyGithub
python310Packages.PyGithub: 1.56 -> 1.57
-rw-r--r--pkgs/development/python-modules/pyGithub/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/pyGithub/default.nix b/pkgs/development/python-modules/pyGithub/default.nix
index d0ebca394460..7facf0c0032d 100644
--- a/pkgs/development/python-modules/pyGithub/default.nix
+++ b/pkgs/development/python-modules/pyGithub/default.nix
@@ -11,14 +11,15 @@
buildPythonPackage rec {
pname = "PyGithub";
- version = "1.56";
+ version = "1.57";
+ format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "PyGithub";
repo = "PyGithub";
rev = "refs/tags/v${version}";
- sha256 = "sha256-L6xrv3dAT/sWt/7ZeDy3P095g7Lpht52LkfCVYNLkbA=";
+ sha256 = "sha256-7CNvSOwDXXcJ082/Fmgr6OtTQeA30yDjt/Oq2nx4vEk=";
};
propagatedBuildInputs = [
@@ -36,7 +37,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Python library to access the GitHub API v3";
homepage = "https://github.com/PyGithub/PyGithub";
- platforms = platforms.all;
+ changelog = "https://github.com/PyGithub/PyGithub/raw/v${version}/doc/changes.rst";
license = licenses.lgpl3Plus;
maintainers = with maintainers; [ jhhuh ];
};