python310Packages.PyGithub: add format attribute
This commit is contained in:
parent
bc127cc35c
commit
c60cb848d9
1 changed files with 2 additions and 1 deletions
|
@ -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 ];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue