mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 06:06:13 +03:00
pandoc-include: 1.2.1 -> 1.3.0
This commit is contained in:
parent
193438e924
commit
8ad07fdd3e
@ -3,26 +3,27 @@
|
||||
, lib
|
||||
, natsort
|
||||
, panflute
|
||||
, lxml
|
||||
, setuptools
|
||||
}:
|
||||
|
||||
buildPythonApplication rec {
|
||||
pname = "pandoc-include";
|
||||
version = "1.2.1";
|
||||
format = "pyproject";
|
||||
version = "1.3.0";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "DCsunset";
|
||||
repo = pname;
|
||||
repo = "pandoc-include";
|
||||
rev = "refs/tags/v${version}";
|
||||
sha256 = "sha256-BDMg3zxNoVtO4dI1t4Msi1UwH+D8uZjBIezsER5KWHA=";
|
||||
hash = "sha256-aqewWSPxl3BpUIise/rPgBQPsyCOxU6gBlzT1u2mHY0=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
setuptools
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [ natsort panflute ];
|
||||
propagatedBuildInputs = [ natsort panflute lxml ];
|
||||
|
||||
pythonImportsCheck = [ "pandoc_include.main" ];
|
||||
|
||||
@ -30,7 +31,7 @@ buildPythonApplication rec {
|
||||
description = "Pandoc filter to allow file and header includes";
|
||||
homepage = "https://github.com/DCsunset/pandoc-include";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ ppenguin ];
|
||||
maintainers = with maintainers; [ ppenguin DCsunset ];
|
||||
mainProgram = "pandoc-include";
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user