nixpkgs/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";
version = "1.1.1";
src = fetchPypi {
inherit pname version;
sha256 = "44674d1d470a9fc264c4d1eba44b74463ca0066d7b954453dd5a4f8057779c9c";
};
meta = {
description = "A module to generate a formatted text table, using ASCII characters";
homepage = http://foutaise.org/code/;
license = lib.licenses.lgpl2;
};
}