python37Packages.cryptography: 2.4.2 -> 2.5

Changelog:
https://cryptography.io/en/latest/changelog/#v2-5

Important changes:
- BACKWARDS INCOMPATIBLE: U-label strings were deprecated in version
  2.1, but this version removes the default idna dependency as well.
- BACKWARDS INCOMPATIBLE: The minimum supported PyPy version is now 5.4.
This commit is contained in:
Michael Weiss 2019-01-22 22:12:43 +01:00 committed by Frederik Rietdijk
parent 53a349d1fd
commit ecfa775439

@ -4,7 +4,6 @@
, openssl
, cryptography_vectors
, darwin
, idna
, asn1crypto
, packaging
, six
@ -23,11 +22,11 @@
buildPythonPackage rec {
# also bump cryptography_vectors
pname = "cryptography";
version = "2.4.2";
version = "2.5";
src = fetchPypi {
inherit pname version;
sha256 = "1pc60dksi9w9mshl6cvn7gdjazbp3pmydy3qp9wgy5wzd8n0b9h5";
sha256 = "00c4d7gvsymlaw0r13zrm32dcnarmpayjyrh65yymlmr6mrbcij9";
};
outputs = [ "out" "dev" ];
@ -35,7 +34,6 @@ buildPythonPackage rec {
buildInputs = [ openssl cryptography_vectors ]
++ stdenv.lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.Security;
propagatedBuildInputs = [
idna
asn1crypto
packaging
six