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

View File

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