retext: init at 7.0.4

This commit is contained in:
8084
2019-03-16 22:14:52 +03:00
parent 106db715f9
commit 3cfda8c3c2
5 changed files with 120 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
{ lib
, buildPythonPackage
, fetchPypi
, python-markdown-math
, markdown
, docutils
, pygments
}:
buildPythonPackage rec {
pname = "Markups";
version = "3.0.0";
src = fetchPypi {
inherit pname version;
sha256 = "1ea19458dfca6a4562044e701aa8698089a0c659fc535689ed260f89a04f8d39";
};
checkInputs = [ markdown docutils pygments ];
propagatedBuildInputs = [ python-markdown-math ];
meta = {
description = "A wrapper around various text markup languages.";
homepage = https://github.com/retext-project/pymarkups;
license = lib.licenses.bsd;
maintainers = with lib.maintainers; [ klntsky ];
};
}