blob: f2aa5d9d71b2c70b8af242e7c5fbee7d885ebe4b (
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
|
{
buildPythonPackage,
lib,
poetry-core,
setuptools,
pytestCheckHook,
sources,
}:
buildPythonPackage rec {
pname = "simple-ascii-tables";
version = sources.simple-ascii-tables.version;
pyproject = true;
src = sources.simple-ascii-tables;
nativeBuildInputs = [poetry-core setuptools];
nativeCheckInputs = [pytestCheckHook];
pythonImportsCheck = ["simple_ascii_tables"];
meta = with lib; {
homepage = "https://pypi.org/project/simple-ascii-tables/";
description = "Simple, minimal, dependency-free ASCII tables for Python";
license = licenses.mit;
maintainers = with maintainers; [bsima];
};
}
|