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)
  • Loading branch information
FRidh committed Mar 14, 2017
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
@@ -1,5 +1,5 @@
{ stdenv, buildPythonPackage, fetchFromGitHub, python
, pythonOlder, enum34
, pythonOlder, pythonAtLeast, enum34
, doCheck ? true, pytest, flake8, flaky
}:
buildPythonPackage rec {
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit 3c6777a

Please sign in to comment.