1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

pyjwt: 1.4.2 -> 1.5.3 for CVE-2017-11424

This commit is contained in:
Franz Pletz 2017-09-28 14:49:57 +02:00
parent 8678f14ac9
commit 232340f35b
No known key found for this signature in database
GPG key ID: 846FDED7792617B4

View file

@ -17113,12 +17113,14 @@ in {
};
pyjwt = buildPythonPackage rec {
version = "1.4.2";
version = "1.5.3";
name = "pyjwt-${version}";
src = pkgs.fetchurl {
url = "http://github.com/progrium/pyjwt/archive/${version}.tar.gz";
sha256 = "06vg84aicwkv0kli8i4jhg0kc6298cmh38ib058q01yxzk6q17gn";
src = pkgs.fetchFromGitHub {
owner = "progrium";
repo = "pyjwt";
rev = version;
sha256 = "109zb3ka2lvp00r9nawa0lmljfikvhcj5yny19kcipz8mqia1gs8";
};
buildInputs = with self; [ pytestrunner pytestcov pytest coverage ];