tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
PyGithub: update to 1.3.6
Rob Vermaas
8 years ago
c7fa2c21
556b6c20
+4
-4
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
pyGithub
default.nix
+4
-4
pkgs/development/python-modules/pyGithub/default.nix
···
1
1
{ stdenv, fetchFromGitHub
2
2
, cacert
3
3
-
, buildPythonPackage, python-jose }:
3
3
+
, buildPythonPackage, python-jose, pyjwt }:
4
4
5
5
buildPythonPackage rec {
6
6
pname = "PyGithub";
7
7
-
version = "1.32";
7
7
+
version = "1.36";
8
8
name = pname + "-" + version;
9
9
10
10
src = fetchFromGitHub {
11
11
owner = "PyGithub";
12
12
repo = "PyGithub";
13
13
rev = "v${version}";
14
14
-
sha256 = "15dr9ja63zdxax9lg6q2kcakqa82dpffyhgpjr13wq3sfkcy5pdw";
14
14
+
sha256 = "0yb74f9hg2vdsy766m850hfb1ss17lbgcdvvklm4qf72w12nxc5w";
15
15
};
16
16
17
17
postPatch = ''
18
18
# requires network
19
19
echo "" > github/tests/Issue142.py
20
20
'';
21
21
-
propagatedBuildInputs = [ python-jose ];
21
21
+
propagatedBuildInputs = [ python-jose pyjwt ];
22
22
meta = with stdenv.lib; {
23
23
homepage = https://github.com/PyGithub/PyGithub;
24
24
description = "A Python (2 and 3) library to access the GitHub API v3";