python3Packages.tatsu: 5.0.0 -> 5.5.0

+3 -9
+3 -9
pkgs/development/python-modules/tatsu/default.nix
··· 6 6 7 7 buildPythonPackage rec { 8 8 pname = "TatSu"; 9 - version = "5.0.0"; 9 + version = "5.5.0"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "neogeny"; 13 13 repo = pname; 14 14 rev = "v${version}"; 15 - sha256 = "1c16fcxf0xjkh5py9bnj6ljb9krhrj57mkwayl1w1dvzwl5lkgj3"; 15 + sha256 = "07bmdnwh99p60cgzhlb8s5vwi5v4r5zi8shymxnnarannkc66hzn"; 16 16 }; 17 17 18 - # Since version 5.0.0 only >=3.8 is officially supported, but ics is not 19 - # compatible with Python 3.8 due to aiohttp: 20 - disabled = pythonOlder "3.7"; 21 - postPatch = '' 22 - substituteInPlace setup.py \ 23 - --replace "python_requires='>=3.8'," "python_requires='>=3.7'," 24 - ''; 18 + disabled = pythonOlder "3.8"; 25 19 26 20 nativeBuildInputs = [ pytestrunner ]; 27 21 propagatedBuildInputs = [ colorama mypy pyyaml regex ]