pythonPackages.pandoc-attributes: init at 0.1.7
This commit is contained in:
parent
3fa83aee7a
commit
d33c0dacf7
@ -0,0 +1,29 @@
|
|||||||
|
{ buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, lib
|
||||||
|
, pandocfilters
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "pandoc-attributes";
|
||||||
|
version = "0.1.7";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "69221502dac74f5df1317011ce62c85a83eef5da3b71c63b1908e98224304a8c";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
pandocfilters
|
||||||
|
];
|
||||||
|
|
||||||
|
# No tests in pypi source
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = https://github.com/aaren/pandoc-attributes;
|
||||||
|
description = "An Attribute class to be used with pandocfilters";
|
||||||
|
license = lib.licenses.bsd2;
|
||||||
|
maintainers = with lib.maintainers; [ vcanadi ];
|
||||||
|
};
|
||||||
|
}
|
@ -4902,6 +4902,8 @@ in {
|
|||||||
|
|
||||||
pandocfilters = callPackage ../development/python-modules/pandocfilters { };
|
pandocfilters = callPackage ../development/python-modules/pandocfilters { };
|
||||||
|
|
||||||
|
pandoc-attributes = callPackage ../development/python-modules/pandoc-attributes { };
|
||||||
|
|
||||||
htmltreediff = callPackage ../development/python-modules/htmltreediff { };
|
htmltreediff = callPackage ../development/python-modules/htmltreediff { };
|
||||||
|
|
||||||
repeated_test = callPackage ../development/python-modules/repeated_test { };
|
repeated_test = callPackage ../development/python-modules/repeated_test { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user