py-markdown-table: init at 1.3.0
This commit is contained in:
@@ -0,0 +1,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 ];
|
||||
};
|
||||
}
|
||||
@@ -12732,6 +12732,8 @@ self: super: with self; {
|
||||
|
||||
py-madvr2 = callPackage ../development/python-modules/py-madvr2 { };
|
||||
|
||||
py-markdown-table = callPackage ../development/python-modules/py-markdown-table { };
|
||||
|
||||
py-melissa-climate = callPackage ../development/python-modules/py-melissa-climate { };
|
||||
|
||||
py-multiaddr = callPackage ../development/python-modules/py-multiaddr { };
|
||||
|
||||
Reference in New Issue
Block a user