pythonPackages.pandoc-attributes: init at 0.1.7

This commit is contained in:
Vito Canadi 2019-02-09 22:09:47 +01:00
parent 3fa83aee7a
commit d33c0dacf7
No known key found for this signature in database
GPG Key ID: 670AE83B5621EA7C
2 changed files with 31 additions and 0 deletions

View File

@ -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 ];
};
}

View File

@ -4902,6 +4902,8 @@ in {
pandocfilters = callPackage ../development/python-modules/pandocfilters { };
pandoc-attributes = callPackage ../development/python-modules/pandoc-attributes { };
htmltreediff = callPackage ../development/python-modules/htmltreediff { };
repeated_test = callPackage ../development/python-modules/repeated_test { };