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

21 lines
450 B
Nix
Raw Normal View History

2017-12-30 10:03:19 +00:00
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "texttable";
version = "1.6.3";
2017-12-30 10:03:19 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "ce0faf21aa77d806bbff22b107cc22cce68dc9438f97a2df32c93e9afa4ce436";
2017-12-30 10:03:19 +00:00
};
meta = with lib; {
2017-12-30 10:03:19 +00:00
description = "A module to generate a formatted text table, using ASCII characters";
homepage = "https://github.com/foutaise/texttable";
license = licenses.lgpl2;
2017-12-30 10:03:19 +00:00
};
}