Skip to content

Commit

Permalink
pythonPackages.pysaml2: 4.9.0 -> 5.0.0 (security)
Browse files Browse the repository at this point in the history
addressing CVE-2020-5390. disabled for python 2.7 as support is being
removed from this release on.
  • Loading branch information
risicle authored and Jon committed Feb 10, 2020
1 parent be32c3c commit 55ace3b
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions pkgs/development/python-modules/pysaml2/default.nix
@@ -1,5 +1,6 @@
{ stdenv
, buildPythonPackage
, isPy3k
, fetchFromGitHub
, substituteAll
, xmlsec
Expand All @@ -9,14 +10,16 @@

buildPythonPackage rec {
pname = "pysaml2";
version = "4.9.0";
version = "5.0.0";

disabled = !isPy3k;

# No tests in PyPI tarball
src = fetchFromGitHub {
owner = "IdentityPython";
repo = pname;
rev = "v${version}";
sha256 = "1ww1l34zn25vxifs8nr0bg7gkhbpy5g45mj0jj4d8hzimahb1brx";
sha256 = "0hwhxz45h8l1b0615hf855z7valfcmm0nb7k31bcj84v68zp5rjs";
};

patches = [
Expand Down

0 comments on commit 55ace3b

Please sign in to comment.