mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
hypothesis: disabled for Python 3.3
This commit is contained in:
parent
648db95651
commit
a312abedeb
@ -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 New Issue
Block a user