blob: 65a5be42a166b1ec7f7a2ecaa7947d24c03ae6d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
{
lib,
buildPythonPackage,
fetchPypi,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "texttable";
version = "1.7.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-LSBo+1URWAfTrHekymj6SIA+hOuw7iNA+FgQejZSJjg=";
};
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "texttable" ];
enabledTestPaths = [ "tests.py" ];
meta = {
description = "Module to generate a formatted text table, using ASCII characters";
homepage = "https://github.com/foutaise/texttable";
changelog = "https://github.com/foutaise/texttable/blob/v${version}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = [ ];
};
}
|