10 buildPythonPackage rec {
13 format = "setuptools";
15 src = fetchFromGitHub {
19 hash = "sha256-IHgKG8v0X+LSK6purWBdwDnI/BCs5XA12ZJixuqqXWg=";
22 # upstream forgot to update the release version
24 substituteInPlace textfsm/__init__.py \
25 --replace "1.1.2" "1.1.3"
28 propagatedBuildInputs = [
33 nativeCheckInputs = [ pytestCheckHook ];
36 description = "Python module for parsing semi-structured text into python tables";
37 mainProgram = "textfsm";
38 homepage = "https://github.com/google/textfsm";
39 license = licenses.asl20;