python311Packages.hypothesis: 6.84.3 -> 6.91.0

https://hypothesis.readthedocs.io/en/latest/changes.html#v6-91-0
This commit is contained in:
Martin Weinelt 2023-12-02 01:08:11 +01:00
parent 4dd353cbb4
commit 32579c2c2d
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -2,6 +2,7 @@
, buildPythonPackage
, isPyPy
, fetchFromGitHub
, setuptools
, attrs
, exceptiongroup
, pexpect
@ -21,9 +22,8 @@
buildPythonPackage rec {
pname = "hypothesis";
version = "6.84.3";
outputs = [ "out" ];
format = "setuptools";
version = "6.91.0";
pyproject = true;
disabled = pythonOlder "3.7";
@ -31,7 +31,7 @@ buildPythonPackage rec {
owner = "HypothesisWorks";
repo = "hypothesis";
rev = "hypothesis-python-${version}";
hash = "sha256-wymZ/tJBGcP57B3BuDlBT7kbUxNwW4/SSmvwLSa5PvM=";
hash = "sha256-2iBeB5pLVOunOJb6aGNQ/ZTj8HyeH+UkqvLPF3YVuLk=";
};
# I tried to package sphinx-selective-exclude, but it throws
@ -49,6 +49,10 @@ buildPythonPackage rec {
postUnpack = "sourceRoot=$sourceRoot/hypothesis-python";
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
attrs
sortedcontainers