lol

Merge pull request #254659 from r-ryantm/auto-update/python310Packages.hypothesmith

python310Packages.hypothesmith: 0.2.3 -> 0.3.0

authored by

OTABI Tomoya and committed by
GitHub
f3ede0f1 4a31fc57

+7 -2
+7 -2
pkgs/development/python-modules/hypothesmith/default.nix
··· 7 7 , parso 8 8 , pytestCheckHook 9 9 , pytest-xdist 10 + , pythonOlder 10 11 }: 11 12 12 13 buildPythonPackage rec { 13 14 pname = "hypothesmith"; 14 - version = "0.2.3"; 15 + version = "0.3.0"; 16 + format = "setuptools"; 17 + 18 + disabled = pythonOlder "3.8"; 15 19 16 20 src = fetchPypi { 17 21 inherit pname version; 18 - hash = "sha256-vc6EXsmE5uP+0h5l0ugrjrxt5cpeuTZJ39dgNMWQakY="; 22 + hash = "sha256-Uj2gTAY7hzko1sKO8WUGz2S/MXdwOYN+F+a73G4szNs="; 19 23 }; 20 24 21 25 patches = [ ··· 56 60 meta = with lib; { 57 61 description = "Hypothesis strategies for generating Python programs, something like CSmith"; 58 62 homepage = "https://github.com/Zac-HD/hypothesmith"; 63 + changelog = "https://github.com/Zac-HD/hypothesmith/blob/master/CHANGELOG.md"; 59 64 license = licenses.mpl20; 60 65 maintainers = with maintainers; [ ]; 61 66 };