python310Packages.cryptography: remove unused patch

authored by Robert Schütz and committed by Robert Schütz 3441f255 4e86ddcd

-14
-14
pkgs/development/python-modules/cryptography/cryptography-py27-warning.patch
··· 1 - Delete the warning that breaks tests of dependent projects. 2 - 3 - --- a/src/cryptography/__init__.py 4 - +++ b/src/cryptography/__init__.py 5 - @@ -33,9 +32,0 @@ __all__ = [ 6 - - 7 - -if sys.version_info[0] == 2: 8 - - warnings.warn( 9 - - "Python 2 is no longer supported by the Python core team. Support for " 10 - - "it is now deprecated in cryptography, and will be removed in the " 11 - - "next release.", 12 - - CryptographyDeprecationWarning, 13 - - stacklevel=2, 14 - - )