python3Packages.cryptography: fix disabledTestPaths value

Expects a path, not a pytest argument.
main
Martin Weinelt 2 years ago
parent 5aa88e2354
commit 0e83e67ae1
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759
  1. 2
      pkgs/development/python-modules/cryptography/default.nix

@ -74,7 +74,7 @@ buildPythonPackage rec {
disabledTestPaths = lib.optionals (stdenv.isDarwin && stdenv.isAarch64) [
# aarch64-darwin forbids W+X memory, but this tests depends on it:
# * https://cffi.readthedocs.io/en/latest/using.html#callbacks
"--ignore=tests/hazmat/backends/test_openssl_memleak.py"
"tests/hazmat/backends/test_openssl_memleak.py"
];
meta = with lib; {

Loading…
Cancel
Save