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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

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.4";
2017-12-30 10:03:19 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "42ee7b9e15f7b225747c3fa08f43c5d6c83bc899f80ff9bae9319334824076e9";
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
};
}