PyGithub: update to 1.3.6
This commit is contained in:
parent
556b6c206a
commit
c7fa2c21ab
|
@ -1,24 +1,24 @@
|
||||||
{ stdenv, fetchFromGitHub
|
{ stdenv, fetchFromGitHub
|
||||||
, cacert
|
, cacert
|
||||||
, buildPythonPackage, python-jose }:
|
, buildPythonPackage, python-jose, pyjwt }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "PyGithub";
|
pname = "PyGithub";
|
||||||
version = "1.32";
|
version = "1.36";
|
||||||
name = pname + "-" + version;
|
name = pname + "-" + version;
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "PyGithub";
|
owner = "PyGithub";
|
||||||
repo = "PyGithub";
|
repo = "PyGithub";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "15dr9ja63zdxax9lg6q2kcakqa82dpffyhgpjr13wq3sfkcy5pdw";
|
sha256 = "0yb74f9hg2vdsy766m850hfb1ss17lbgcdvvklm4qf72w12nxc5w";
|
||||||
};
|
};
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
# requires network
|
# requires network
|
||||||
echo "" > github/tests/Issue142.py
|
echo "" > github/tests/Issue142.py
|
||||||
'';
|
'';
|
||||||
propagatedBuildInputs = [ python-jose ];
|
propagatedBuildInputs = [ python-jose pyjwt ];
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = https://github.com/PyGithub/PyGithub;
|
homepage = https://github.com/PyGithub/PyGithub;
|
||||||
description = "A Python (2 and 3) library to access the GitHub API v3";
|
description = "A Python (2 and 3) library to access the GitHub API v3";
|
||||||
|
|
Loading…
Reference in New Issue