Merge pull request #57766 from 8084/init-retext

retext: init at 7.0.4
This commit is contained in:
Joachim F
2019-03-23 09:23:44 +00:00
committed by GitHub
5 changed files with 121 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.bsd3;
maintainers = with lib.maintainers; [ klntsky ];
};
}

View File

@@ -0,0 +1,24 @@
{ lib
, buildPythonPackage
, fetchPypi
, markdown
}:
buildPythonPackage rec {
pname = "python-markdown-math";
version = "0.6";
src = fetchPypi {
inherit pname version;
sha256 = "c68d8cb9695cb7b435484403dc18941d1bad0ff148e4166d9417046a0d5d3022";
};
checkInputs = [ markdown ];
meta = {
description = "Math extension for Python-Markdown";
homepage = https://github.com/mitya57/python-markdown-math;
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ klntsky ];
};
}