2017-03-15 23:48:34 +00:00
|
|
|
{ stdenv, fetchFromGitHub
|
2019-07-22 11:57:04 +00:00
|
|
|
, buildPythonPackage, python-jose, pyjwt, requests, deprecated, httpretty }:
|
2017-03-15 23:48:34 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2017-11-09 11:26:09 +00:00
|
|
|
pname = "PyGithub";
|
2019-07-22 11:57:04 +00:00
|
|
|
version = "1.43.8";
|
2017-03-15 23:48:34 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "PyGithub";
|
|
|
|
repo = "PyGithub";
|
|
|
|
rev = "v${version}";
|
2019-07-22 11:57:04 +00:00
|
|
|
sha256 = "1625v558xga5mwhl9jqmibywy5qafmg1vqrirqz6zfq1la1d22mw";
|
2017-03-15 23:48:34 +00:00
|
|
|
};
|
|
|
|
|
2019-07-22 11:57:04 +00:00
|
|
|
propagatedBuildInputs = [ python-jose pyjwt requests deprecated httpretty ];
|
|
|
|
doCheck = false;
|
|
|
|
|
2017-03-15 23:48:34 +00:00
|
|
|
meta = with stdenv.lib; {
|
2017-08-01 20:03:30 +00:00
|
|
|
homepage = https://github.com/PyGithub/PyGithub;
|
2017-03-15 23:48:34 +00:00
|
|
|
description = "A Python (2 and 3) library to access the GitHub API v3";
|
|
|
|
platforms = platforms.all;
|
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ jhhuh ];
|
|
|
|
};
|
|
|
|
}
|