3
0
Fork 0
forked from mirrors/nixpkgs
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";
2019-02-16 08:53:25 +00:00
version = "1.6.1";
2017-12-30 10:03:19 +00:00
src = fetchPypi {
inherit pname version;
2019-02-16 08:53:25 +00:00
sha256 = "2b60a5304ccfbeac80ffae7350d7c2f5d7a24e9aab5036d0f82489746419d9b2";
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;
};
}