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