11 buildPythonPackage rec {
12 pname = "hypothesis-auto";
16 disabled = pythonOlder "3.6";
19 inherit pname version;
20 hash = "sha256-XiwvsJ3AmEJRLYBjC7eSNZodM9LARzrUfuI9oL6eMrE=";
24 # https://github.com/timothycrosley/hypothesis-auto/pull/20
25 substituteInPlace pyproject.toml \
26 --replace 'pydantic = ">=0.32.2<2.0.0"' 'pydantic = ">=0.32.2, <2.0.0"' \
27 --replace 'hypothesis = ">=4.36<6.0.0"' 'hypothesis = "*"'
34 propagatedBuildInputs = [
40 pythonImportsCheck = [
45 description = "Enables fully automatic tests for type annotated functions";
46 homepage = "https://github.com/timothycrosley/hypothesis-auto/";
47 license = licenses.mit;
48 maintainers = with maintainers; [ jonringer ];