Blame SOURCES/python-sqlalchemy-dont-fail-in-fips-mode.patch

6d3985
diff -up SQLAlchemy-0.9.8/lib/sqlalchemy/util/langhelpers.py.orig SQLAlchemy-0.9.8/lib/sqlalchemy/util/langhelpers.py
6d3985
--- SQLAlchemy-0.9.8/lib/sqlalchemy/util/langhelpers.py.orig	2015-01-22 10:47:16.948319999 +0100
6d3985
+++ SQLAlchemy-0.9.8/lib/sqlalchemy/util/langhelpers.py	2015-01-22 10:50:07.837466318 +0100
6d3985
@@ -26,7 +26,7 @@ from . import _collections
6d3985
 def md5_hex(x):
6d3985
     if compat.py3k:
6d3985
         x = x.encode('utf-8')
6d3985
-    m = hashlib.md5()
6d3985
+    m = hashlib.md5(usedforsecurity=False)
6d3985
     m.update(x)
6d3985
     return m.hexdigest()
6d3985