nixpkgs/pkgs/development/python-modules/texttable/default.nix

20 lines
429 B
Nix
Raw Normal View History

2017-12-30 10:03:19 +00:00
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "texttable";
2018-01-07 08:01:29 +00:00
version = "1.2.1";
2017-12-30 10:03:19 +00:00
src = fetchPypi {
inherit pname version;
2018-01-07 08:01:29 +00:00
sha256 = "c89dc0148ae29645917aab7e970a30d1af565b3ca276cef8ab1a60469f0d8100";
2017-12-30 10:03:19 +00:00
};
meta = {
description = "A module to generate a formatted text table, using ASCII characters";
homepage = http://foutaise.org/code/;
license = lib.licenses.lgpl2;
};
}