forked from mirrors/nixpkgs
python3Packages.pandoc-xnos: init at 2.5.0
This commit is contained in:
parent
31fda20387
commit
36c879d18c
32
pkgs/development/python-modules/pandoc-xnos/default.nix
Normal file
32
pkgs/development/python-modules/pandoc-xnos/default.nix
Normal file
|
@ -0,0 +1,32 @@
|
|||
{ buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, lib
|
||||
, pandocfilters
|
||||
, psutil
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pandoc-xnos";
|
||||
version = "2.5.0";
|
||||
format = "pyproject";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "tomduck";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "sha256-beiGvN0DS6s8wFjcDKozDuwAM2OApX3lTRaUDRUqLeU=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ pandocfilters psutil ];
|
||||
|
||||
doCheck = true;
|
||||
|
||||
pythonImportsCheck = [ "pandocxnos" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Pandoc filter suite providing facilities for cross-referencing in markdown documents";
|
||||
homepage = "https://github.com/tomduck/pandoc-xnos";
|
||||
license = licenses.gpl3Only;
|
||||
maintainers = with maintainers; [ ppenguin ];
|
||||
};
|
||||
}
|
|
@ -5886,6 +5886,8 @@ in {
|
|||
|
||||
pandoc-attributes = callPackage ../development/python-modules/pandoc-attributes { };
|
||||
|
||||
pandoc-xnos = callPackage ../development/python-modules/pandoc-xnos { };
|
||||
|
||||
pandocfilters = callPackage ../development/python-modules/pandocfilters { };
|
||||
|
||||
panel = callPackage ../development/python-modules/panel { };
|
||||
|
|
Loading…
Reference in a new issue