python3Packages.panflute: init at 2.0.5 (#111463)
This commit is contained in:
parent
23db19263f
commit
f72f55f690
28
pkgs/development/python-modules/panflute/default.nix
Normal file
28
pkgs/development/python-modules/panflute/default.nix
Normal file
@ -0,0 +1,28 @@
|
||||
{ lib
|
||||
, fetchPypi
|
||||
, click
|
||||
, pyyaml
|
||||
, buildPythonPackage
|
||||
, isPy3k
|
||||
}:
|
||||
|
||||
buildPythonPackage rec{
|
||||
version = "2.0.5";
|
||||
pname = "panflute";
|
||||
|
||||
disabled = !isPy3k;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1ssmqcyr91f0gpl49lz6a9jkl17l06h6qcik24rlmva28ii6aszz";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ click pyyaml ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A Pythonic alternative to John MacFarlane's pandocfilters, with extra helper functions";
|
||||
homepage = "http://scorreia.com/software/panflute";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ synthetica ];
|
||||
};
|
||||
}
|
@ -4652,6 +4652,8 @@ in {
|
||||
|
||||
panel = callPackage ../development/python-modules/panel { };
|
||||
|
||||
panflute = callPackage ../development/python-modules/panflute { };
|
||||
|
||||
papermill = callPackage ../development/python-modules/papermill { };
|
||||
|
||||
openpaperwork-core = callPackage ../applications/office/paperwork/openpaperwork-core.nix { };
|
||||
|
Loading…
Reference in New Issue
Block a user