about summary refs log tree commit diff
path: root/pkgs/development/python-modules/hypothesis.nix
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2017-03-14 10:49:39 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2017-03-14 10:49:39 +0100
commita312abedeb1b935829f2b76e6bbaa494fbcf3f25 (patch)
tree8c04bcca02902c5edf59a319f730259d488f333e /pkgs/development/python-modules/hypothesis.nix
parent648db95651e99e5e2ce938bf5e776fc9f512c81a (diff)
downloadnixlib-a312abedeb1b935829f2b76e6bbaa494fbcf3f25.tar
nixlib-a312abedeb1b935829f2b76e6bbaa494fbcf3f25.tar.gz
nixlib-a312abedeb1b935829f2b76e6bbaa494fbcf3f25.tar.bz2
nixlib-a312abedeb1b935829f2b76e6bbaa494fbcf3f25.tar.lz
nixlib-a312abedeb1b935829f2b76e6bbaa494fbcf3f25.tar.xz
nixlib-a312abedeb1b935829f2b76e6bbaa494fbcf3f25.tar.zst
nixlib-a312abedeb1b935829f2b76e6bbaa494fbcf3f25.zip
hypothesis: disabled for Python 3.3
Diffstat (limited to 'pkgs/development/python-modules/hypothesis.nix')
-rw-r--r--pkgs/development/python-modules/hypothesis.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/hypothesis.nix b/pkgs/development/python-modules/hypothesis.nix
index e961d56abcb6..271251b830e1 100644
--- a/pkgs/development/python-modules/hypothesis.nix
+++ b/pkgs/development/python-modules/hypothesis.nix
@@ -1,5 +1,5 @@
 { stdenv, buildPythonPackage, fetchFromGitHub, python
-, pythonOlder, enum34
+, pythonOlder, pythonAtLeast, enum34
 , doCheck ? true, pytest, flake8, flaky
 }:
 buildPythonPackage rec {
@@ -30,6 +30,10 @@ buildPythonPackage rec {
     ${python.interpreter} -m pytest tests/cover
   '';
 
+  # Unsupport by upstream on certain versions
+  # https://github.com/HypothesisWorks/hypothesis-python/issues/477
+  disabled = pythonOlder "3.4" && pythonAtLeast "2.8";
+
   meta = with stdenv.lib; {
     description = "A Python library for property based testing";
     homepage = https://github.com/DRMacIver/hypothesis;