mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
python3Packages.mrkd: init at 0.2.0
This commit is contained in:
parent
a5ac0a33a7
commit
fea921d1b5
3 changed files with 32 additions and 0 deletions
28
pkgs/development/python-modules/mrkd/default.nix
Normal file
28
pkgs/development/python-modules/mrkd/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue