python3Packages.lark: 1.1.7 -> 1.1.8

https://github.com/lark-parser/lark/releases/tag/1.1.8
This commit is contained in:
Martin Weinelt
2023-12-20 20:44:31 +01:00
parent 00961fa708
commit f45d9e34ec
@@ -1,7 +1,6 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, fetchpatch
, regex
, pytestCheckHook
, js2py
@@ -10,25 +9,16 @@
buildPythonPackage rec {
pname = "lark";
version = "1.1.7";
version = "1.1.8";
format = "pyproject";
src = fetchFromGitHub {
owner = "lark-parser";
repo = "lark";
rev = "refs/tags/${version}";
hash = "sha256-k74tozIgJuwtUqKKmYHlfLpCWyT2hdoygRJiIpw+GDE=";
hash = "sha256-bGNoQeiAC2JIFOhgYUnc+nApa2ovFzXnpl9JQAE11hM=";
};
patches = [
# include .lark files in package data
# https://github.com/lark-parser/lark/pull/1308
(fetchpatch {
url = "https://github.com/lark-parser/lark/commit/656334cb8793fd4e08a12843eaced5a7bb518be3.patch";
hash = "sha256-pYeNnFfXJ8xkR0KsU/KMWJ8nF+BhP9PXEANiVhT254s=";
})
];
nativeBuildInputs = [
setuptools
];