summary refs log tree commit diff
path: root/pkgs/development/python-modules/cryptography
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2019-04-26 22:20:03 -0400
committerGitHub <noreply@github.com>2019-04-26 22:20:03 -0400
commit87944c3125c4e69a69e76003c0ed5bf47bf0c4d8 (patch)
tree6c6e4f084e2ed6567719d44b4dd377829cd2c6f8 /pkgs/development/python-modules/cryptography
parent1cf626ce29f154c5742196327e03dbd61d0ed988 (diff)
parentc1f1a0ea159a4513be524fa775ad708debd19aa1 (diff)
downloadnixpkgs-87944c3125c4e69a69e76003c0ed5bf47bf0c4d8.tar
nixpkgs-87944c3125c4e69a69e76003c0ed5bf47bf0c4d8.tar.gz
nixpkgs-87944c3125c4e69a69e76003c0ed5bf47bf0c4d8.tar.bz2
nixpkgs-87944c3125c4e69a69e76003c0ed5bf47bf0c4d8.tar.lz
nixpkgs-87944c3125c4e69a69e76003c0ed5bf47bf0c4d8.tar.xz
nixpkgs-87944c3125c4e69a69e76003c0ed5bf47bf0c4d8.tar.zst
nixpkgs-87944c3125c4e69a69e76003c0ed5bf47bf0c4d8.zip
Merge pull request #56744 from matthewbauer/macos-10-12
Update macOS to 10.12
Diffstat (limited to 'pkgs/development/python-modules/cryptography')
-rw-r--r--pkgs/development/python-modules/cryptography/default.nix8
1 files changed, 0 insertions, 8 deletions
diff --git a/pkgs/development/python-modules/cryptography/default.nix b/pkgs/development/python-modules/cryptography/default.nix
index 69c9f729294..f40f0bf63d8 100644
--- a/pkgs/development/python-modules/cryptography/default.nix
+++ b/pkgs/development/python-modules/cryptography/default.nix
@@ -53,14 +53,6 @@ buildPythonPackage rec {
     py.test --disable-pytest-warnings tests
   '';
 
-  # The test assumes that if we're on Sierra or higher, that we use `getentropy`, but for binary
-  # compatibility with pre-Sierra for binary caches, we hide that symbol so the library doesn't
-  # use it. This boils down to them checking compatibility with `getentropy` in two different places,
-  # so let's neuter the second test.
-  postPatch = ''
-    substituteInPlace ./tests/hazmat/backends/test_openssl.py --replace '"16.0"' '"99.0"'
-  '';
-
   # IOKit's dependencies are inconsistent between OSX versions, so this is the best we
   # can do until nix 1.11's release
   __impureHostDeps = [ "/usr/lib" ];