Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

python37Packages.cryptography: 2.6.1 -> 2.7

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

Important changes:
- BACKWARDS INCOMPATIBLE: We no longer distribute 32-bit manylinux1
wheels. Continuing to produce them was a maintenance burden.
- BACKWARDS INCOMPATIBLE: Removed the
cryptography.hazmat.primitives.mac.MACContext interface.
The CMAC and HMAC APIs have not changed, but they are no longer
registered as MACContext instances.

+3 -3
+2 -2
pkgs/development/python-modules/cryptography/default.nix
··· 21 22 buildPythonPackage rec { 23 pname = "cryptography"; 24 - version = "2.6.1"; # Also update the hash in vectors.nix 25 26 src = fetchPypi { 27 inherit pname version; 28 - sha256 = "19iwz5avym5zl6jrrrkym1rdaa9h61j20ph4cswsqgv8xg5j3j16"; 29 }; 30 31 outputs = [ "out" "dev" ];
··· 21 22 buildPythonPackage rec { 23 pname = "cryptography"; 24 + version = "2.7"; # Also update the hash in vectors.nix 25 26 src = fetchPypi { 27 inherit pname version; 28 + sha256 = "1inlnr36kl36551c9rcad99jmhk81v33by3glkadwdcgmi17fd76"; 29 }; 30 31 outputs = [ "out" "dev" ];
+1 -1
pkgs/development/python-modules/cryptography/vectors.nix
··· 7 8 src = fetchPypi { 9 inherit pname version; 10 - sha256 = "1bsqcv3h49dzqnyn29ijq8r7k1ra8ikl1y9qcpcns9nbvhaq3wq3"; 11 }; 12 13 # No tests included
··· 7 8 src = fetchPypi { 9 inherit pname version; 10 + sha256 = "1g38zw90510azyfrj6mxbslx2gp9yrnv5dac0w2819k9ssdznbgi"; 11 }; 12 13 # No tests included