hypothesis: disabled for Python 3.3
This commit is contained in:
parent
648db95651
commit
a312abedeb
1 changed files with 5 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue