about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2019-08-18 10:08:31 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2019-08-18 11:48:40 +0200
commitf4a296912f1d0fd2208bb7f7614c0274a95c9fb4 (patch)
tree17ed47f07a32c1b36de88274fa0a9a9e57b993ec
parent556248d35ffa5f55809603515713a3d6442bcc4a (diff)
downloadnixlib-f4a296912f1d0fd2208bb7f7614c0274a95c9fb4.tar
nixlib-f4a296912f1d0fd2208bb7f7614c0274a95c9fb4.tar.gz
nixlib-f4a296912f1d0fd2208bb7f7614c0274a95c9fb4.tar.bz2
nixlib-f4a296912f1d0fd2208bb7f7614c0274a95c9fb4.tar.lz
nixlib-f4a296912f1d0fd2208bb7f7614c0274a95c9fb4.tar.xz
nixlib-f4a296912f1d0fd2208bb7f7614c0274a95c9fb4.tar.zst
nixlib-f4a296912f1d0fd2208bb7f7614c0274a95c9fb4.zip
pythonPackages.pynacl: disable a failing test
-rw-r--r--pkgs/development/python-modules/pynacl/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/pynacl/default.nix b/pkgs/development/python-modules/pynacl/default.nix
index fb2e9abe0651..1561c3c4d6de 100644
--- a/pkgs/development/python-modules/pynacl/default.nix
+++ b/pkgs/development/python-modules/pynacl/default.nix
@@ -35,6 +35,9 @@ buildPythonPackage rec {
     py.test
   '';
 
+  # https://github.com/pyca/pynacl/issues/550
+  PYTEST_ADDOPTS = "-k 'not test_wrong_types'";
+
   meta = with stdenv.lib; {
     maintainers = with maintainers; [ va1entin ];
     description = "Python binding to the Networking and Cryptography (NaCl) library";