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

pythonPackages.hypothesis: 0.7.0 -> 1.14.0

Needed for newer 'cryptography', which is needed to fix build against
latest openssl.

Based on 4b23328e39 ("buildPythonPackage: fix more wheels failures").

Changed files
+3 -3
pkgs
+3 -3
pkgs/top-level/python-packages.nix
··· 6981 6981 }; 6982 6982 6983 6983 hypothesis = pythonPackages.buildPythonPackage rec { 6984 - name = "hypothesis-0.7.0"; 6984 + name = "hypothesis-1.14.0"; 6985 6985 6986 6986 doCheck = false; 6987 6987 6988 6988 src = pkgs.fetchurl { 6989 - url = "https://pypi.python.org/packages/source/h/hypothesis/hypothesis-0.7.0.tar.gz"; 6990 - md5 = "0c4112bab04b71979286387b033921b5"; 6989 + url = "https://pypi.python.org/packages/source/h/hypothesis/${name}.tar.gz"; 6990 + sha256 = "12dxrvn108q2j20brrk6zcb8w00kn3af1c07c0fv572nf2ngyaxy"; 6991 6991 }; 6992 6992 6993 6993 meta = {