nixpkgs/pkgs/development/python-modules/pyGithub/default.nix
R. RyanTM 16af91590d python37Packages.PyGithub: 1.43.8 -> 1.44
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-pygithub/versions
2019-10-23 11:46:06 -07:00

26 lines
715 B
Nix

{ stdenv, fetchFromGitHub
, buildPythonPackage, python-jose, pyjwt, requests, deprecated, httpretty }:
buildPythonPackage rec {
pname = "PyGithub";
version = "1.44";
src = fetchFromGitHub {
owner = "PyGithub";
repo = "PyGithub";
rev = "v${version}";
sha256 = "067iyarllgdp40bzjxskzrixvmz350yj1qf8wvbddka504bcbh9r";
};
propagatedBuildInputs = [ python-jose pyjwt requests deprecated httpretty ];
doCheck = false;
meta = with stdenv.lib; {
homepage = https://github.com/PyGithub/PyGithub;
description = "A Python (2 and 3) library to access the GitHub API v3";
platforms = platforms.all;
license = licenses.gpl3;
maintainers = with maintainers; [ jhhuh ];
};
}