Merge pull request #181095 from r-ryantm/auto-update/python3.10-tatsu

python310Packages.tatsu: 5.8.0 -> 5.8.1
This commit is contained in:
Mario Rodas 2022-07-16 09:11:30 -05:00 committed by GitHub
commit 28a076f679
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,15 +5,15 @@
buildPythonPackage rec {
pname = "tatsu";
version = "5.8.0";
version = "5.8.1";
# upstream only supports 3.10+
disabled = pythonOlder "3.10";
src = fetchFromGitHub {
owner = "neogeny";
repo = "TatSu";
rev = "v${version}";
sha256 = "sha256-spTIHiyspjrIV8DKR7YNpNTNO9SlcLOROuABhmu3ckA=";
rev = "refs/tags/v${version}";
sha256 = "sha256-2zEpP1WATqzAo0HsBGdjjk/RoliyIim1OltPoJTlxIU=";
};
nativeBuildInputs = [ pytest-runner ];