Skip to content

Commit

Permalink
hypothesis: disabled for Python 3.3
Browse files Browse the repository at this point in the history
(cherry picked from commit a312abe)
FRidh committed Mar 14, 2017

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
1 parent 57e0f0d commit 3c6777a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pkgs/development/python-modules/hypothesis.nix
Original file line number Diff line number Diff line change
@@ -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;

0 comments on commit 3c6777a

Please sign in to comment.