python3Packages.textfsm: 1.1.1 -> 1.1.2

This commit is contained in:
Martin Weinelt 2021-07-01 18:40:23 +02:00
parent ee5b85e00e
commit 020db0535b
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -9,26 +9,25 @@
buildPythonPackage rec {
pname = "textfsm";
version = "1.1.1";
version = "1.1.2";
format = "setuptools";
src = fetchFromGitHub {
owner = "google";
repo = pname;
rev = "v${version}";
sha256 = "0fq2hphd89hns11nh0yifcp6brg6yy4n4hbvfk6avbjd7s40789a";
sha256 = "1cbczg3h2841v1xk2s2xg540c69vsrkwxljm758fyr65kshrzlhm";
};
patches = [
(fetchpatch {
# remove pytest-runner dependency
url = "https://github.com/google/textfsm/commit/212db75fea4a79aca0f8f85a78954ffbc5667096.patch";
sha256 = "0n6qh3sz9wy5gdpq9jjxx8firis48ypr20yacs5bqri59sziwjp0";
})
propagatedBuildInputs = [
six
future
];
propagatedBuildInputs = [ six future ];
checkInputs = [ pytestCheckHook ];
checkInputs = [
pytestCheckHook
];
meta = with lib; {
description = "Python module for parsing semi-structured text into python tables";