summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2022-11-05 10:25:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2022-11-05 10:25:00 +0000
commitc60cb848d995b418bc20a1beb7399e97ebe81df7 (patch)
treea75d4115541b40067266d4a692df7682137ad016
parentpython310Packages.PyGithub: 1.56 -> 1.57 (diff)
downloadnixpkgs-c60cb848d995b418bc20a1beb7399e97ebe81df7.tar.gz
python310Packages.PyGithub: add format attribute
-rw-r--r--pkgs/development/python-modules/pyGithub/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/pyGithub/default.nix b/pkgs/development/python-modules/pyGithub/default.nix
index 5703f9dbf23a..7facf0c0032d 100644
--- a/pkgs/development/python-modules/pyGithub/default.nix
+++ b/pkgs/development/python-modules/pyGithub/default.nix
@@ -12,6 +12,7 @@
buildPythonPackage rec {
pname = "PyGithub";
version = "1.57";
+ format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
@@ -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 ];
};