python310Packages.PyGithub: add format attribute

This commit is contained in:
Mario Rodas 2022-11-05 10:25:00 +00:00
parent bc127cc35c
commit c60cb848d9

View file

@ -12,6 +12,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "PyGithub"; pname = "PyGithub";
version = "1.57"; version = "1.57";
format = "setuptools";
disabled = pythonOlder "3.6"; disabled = pythonOlder "3.6";
src = fetchFromGitHub { src = fetchFromGitHub {
@ -36,7 +37,7 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
description = "Python library to access the GitHub API v3"; description = "Python library to access the GitHub API v3";
homepage = "https://github.com/PyGithub/PyGithub"; homepage = "https://github.com/PyGithub/PyGithub";
platforms = platforms.all; changelog = "https://github.com/PyGithub/PyGithub/raw/v${version}/doc/changes.rst";
license = licenses.lgpl3Plus; license = licenses.lgpl3Plus;
maintainers = with maintainers; [ jhhuh ]; maintainers = with maintainers; [ jhhuh ];
}; };