python312Packages.hypothesis: 6.100.1 -> 6.103.0

https://hypothesis.readthedocs.io/en/latest/changes.html#v6-103-0
This commit is contained in:
Martin Weinelt
2024-05-29 23:02:52 +02:00
parent aec838761b
commit 2c83f84113
@@ -23,7 +23,7 @@
buildPythonPackage rec {
pname = "hypothesis";
version = "6.100.1";
version = "6.103.0";
pyproject = true;
disabled = pythonOlder "3.7";
@@ -32,7 +32,7 @@ buildPythonPackage rec {
owner = "HypothesisWorks";
repo = "hypothesis";
rev = "hypothesis-python-${version}";
hash = "sha256-3Mwa1nS6rvFBcU5QXLH4/wa38qCvDX9sRina1aJS1Rs=";
hash = "sha256-sll0GAI1nvBQvRqgpTkLpj7GQI988AftDQHV1zh2t1w=";
};
# I tried to package sphinx-selective-exclude, but it throws
@@ -73,16 +73,18 @@ buildPythonPackage rec {
pytestFlagsArray = [ "tests/cover" ];
disabledTests =
if (pythonOlder "3.10") then
[
# not sure why these tests fail with only 3.9
# FileNotFoundError: [Errno 2] No such file or directory: 'git'
"test_observability"
"test_assume_has_status_reason"
"test_observability_captures_stateful_reprs"
]
else
null;
[
# racy, fails to find a file sometimes
"test_recreate_charmap"
"test_uses_cached_charmap"
]
++ lib.optionals (pythonOlder "3.10") [
# not sure why these tests fail with only 3.9
# FileNotFoundError: [Errno 2] No such file or directory: 'git'
"test_observability"
"test_assume_has_status_reason"
"test_observability_captures_stateful_reprs"
];
pythonImportsCheck = [ "hypothesis" ];