hypothesis: disabled for Python 3.3

This commit is contained in:
Frederik Rietdijk 2017-03-14 10:49:39 +01:00
parent 648db95651
commit a312abedeb

View File

@ -1,5 +1,5 @@
{ stdenv, buildPythonPackage, fetchFromGitHub, python { stdenv, buildPythonPackage, fetchFromGitHub, python
, pythonOlder, enum34 , pythonOlder, pythonAtLeast, enum34
, doCheck ? true, pytest, flake8, flaky , doCheck ? true, pytest, flake8, flaky
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -30,6 +30,10 @@ buildPythonPackage rec {
${python.interpreter} -m pytest tests/cover ${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; { meta = with stdenv.lib; {
description = "A Python library for property based testing"; description = "A Python library for property based testing";
homepage = https://github.com/DRMacIver/hypothesis; homepage = https://github.com/DRMacIver/hypothesis;