diff options
| author | Mario Rodas <marsam@users.noreply.github.com> | 2022-11-05 10:25:00 +0000 |
|---|---|---|
| committer | Mario Rodas <marsam@users.noreply.github.com> | 2022-11-05 10:25:00 +0000 |
| commit | c60cb848d995b418bc20a1beb7399e97ebe81df7 (patch) | |
| tree | a75d4115541b40067266d4a692df7682137ad016 | |
| parent | python310Packages.PyGithub: 1.56 -> 1.57 (diff) | |
| download | nixpkgs-c60cb848d995b418bc20a1beb7399e97ebe81df7.tar.gz | |
python310Packages.PyGithub: add format attribute
| -rw-r--r-- | pkgs/development/python-modules/pyGithub/default.nix | 3 |
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 ]; }; |
