2df2072feb
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.6-texttable/versions
20 lines
417 B
Nix
20 lines
417 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "texttable";
|
|
version = "1.5.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0mzv6zs8ciwnf83fwikqmmjwbzqmdja3imn4b4k209f80g0rk8qv";
|
|
};
|
|
|
|
meta = {
|
|
description = "A module to generate a formatted text table, using ASCII characters";
|
|
homepage = http://foutaise.org/code/;
|
|
license = lib.licenses.lgpl2;
|
|
};
|
|
} |