Merge pull request #64912 from r-ryantm/auto-update/python3.7-texttable

python37Packages.texttable: 1.6.1 -> 1.6.2
This commit is contained in:
worldofpeace 2019-07-16 16:32:04 -04:00 committed by GitHub
commit 325d2e2352
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 6 deletions

View File

@ -5,16 +5,16 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "texttable"; pname = "texttable";
version = "1.6.1"; version = "1.6.2";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "2b60a5304ccfbeac80ffae7350d7c2f5d7a24e9aab5036d0f82489746419d9b2"; sha256 = "1x5l77akfc20x52jma9573qp8l8r07q103pm4l0pbizvh4vp1wzg";
}; };
meta = { meta = with lib; {
description = "A module to generate a formatted text table, using ASCII characters"; description = "A module to generate a formatted text table, using ASCII characters";
homepage = http://foutaise.org/code/; homepage = "https://github.com/foutaise/texttable";
license = lib.licenses.lgpl2; license = licenses.lgpl2;
}; };
} }