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

20 lines
429 B
Nix
Raw Normal View History

2017-12-30 11:03:19 +01:00
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "texttable";
2018-06-12 18:47:07 +02:00
version = "1.3.1";
2017-12-30 11:03:19 +01:00
src = fetchPypi {
inherit pname version;
2018-06-12 18:47:07 +02:00
sha256 = "0f75f5838b775bddc19f72c5bf50eb74be3815eb505ed3084e4666ce2e6c3259";
2017-12-30 11:03:19 +01:00
};
meta = {
description = "A module to generate a formatted text table, using ASCII characters";
homepage = http://foutaise.org/code/;
license = lib.licenses.lgpl2;
};
}