blob: 33200d84320fe1b5928cff901e5a73e27848ba90 (
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
|
{
buildPythonPackage,
fetchFromGitHub,
lib,
poetry-core,
}:
buildPythonPackage rec {
pname = "py-markdown-table";
version = "1.3.0";
pyproject = true;
src = fetchFromGitHub {
owner = "hvalev";
repo = "py-markdown-table";
tag = "v${version}";
hash = "sha256-BZDyBDW6Ok9WUb5FEAevVqkYM1S12pvkUCGbZ0XxxV4=";
};
build-system = [ poetry-core ];
meta = {
description = "Tiny python library with zero dependencies which generates formatted multiline tables in markdown";
homepage = "https://github.com/hvalev/py-markdown-table";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.jmbaur ];
};
}
|