python3Packages.mrkd: init at 0.2.0

This commit is contained in:
Pavol Rusnak 2021-11-03 23:16:19 +01:00
parent a5ac0a33a7
commit fea921d1b5
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D
3 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,28 @@
{ lib
, buildPythonPackage
, fetchPypi
, jinja2
, mistune
, pygments
, setuptools
}:
buildPythonPackage rec {
pname = "mrkd";
version = "0.2.0";
src = fetchPypi {
inherit pname version;
sha256 = "456f8c1be99da268554b29c6b5383532e58119def5a65d85270bc6a0ecc26aaf";
};
propagatedBuildInputs = [ jinja2 mistune pygments setuptools ];
pythonImportsCheck = [ "mrkd" ];
meta = with lib; {
description = "Write man pages using Markdown, and convert them to Roff or HTML";
homepage = "https://github.com/refi64/mrkd";
license = licenses.bsd2;
};
}

View File

@ -3321,6 +3321,8 @@ with pkgs;
mq-cli = callPackage ../tools/system/mq-cli { };
mrkd = with python3Packages; toPythonApplication mrkd;
n2n = callPackage ../tools/networking/n2n { };
nextdns = callPackage ../applications/networking/nextdns { };

View File

@ -4874,6 +4874,8 @@ in {
mpyq = callPackage ../development/python-modules/mpyq { };
mrkd = callPackage ../development/python-modules/mrkd { };
ms-cv = callPackage ../development/python-modules/ms-cv { };
msal = callPackage ../development/python-modules/msal { };