From 1c1a5554382c28bb44e9fc1a279d82a88fa88d46 Mon Sep 17 00:00:00 2001 From: aszlig Date: Mon, 11 Dec 2017 11:26:32 +0100 Subject: [PATCH] python-axolotl: Disable tests for Python 2.x The bump of setuptools from version 36.7.1 to 38.2.3 (commit 70c189976809dfdcedee4a9a69558866c1ff95a1) has caused the axolotl tests to suddenly being run. As the comment prior to the doCheck attribute states, we're using pycryptodome so the tests are expected to fail even on Python 2.7 but because of the version bump mentioned above, the tests didn't run and thus the build didn't fail during when commit 094ac2d9b1d3c6895a9c9e0e4401919c475f4f2c was made. Signed-off-by: aszlig Cc: @abbradar, @Mic92 --- pkgs/top-level/python-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 188fe7440db..a679b39d272 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -6780,8 +6780,8 @@ in { }; propagatedBuildInputs = with self; [ python-axolotl-curve25519 protobuf pycrypto ]; - # IV == 0 in tests is not supported by pycrytpodom (our pycrypto drop-in) - doCheck = !isPy3k; + # IV == 0 in tests is not supported by pycryptodome (our pycrypto drop-in) + doCheck = false; meta = { homepage = "https://github.com/tgalal/python-axolotl";