1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-01 05:19:17 +03:00
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
437 B
Nix
Raw Normal View History

2017-12-30 11:03:19 +01:00
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "texttable";
version = "1.6.7";
2017-12-30 11:03:19 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "sha256-KQNI+2f3dGkxvN/VWsdYTs1OWwhGqxZDM/B5SxIXYPI=";
2017-12-30 11:03:19 +01:00
};
meta = with lib; {
2017-12-30 11:03:19 +01: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 11:03:19 +01:00
};
}