sphinxcontrib-jsmath: init at 1.0.1

build dep of sphinx 2.2.0
This commit is contained in:
Markus S. Wamser
2019-10-22 00:37:07 +02:00
committed by Frederik Rietdijk
parent 2218aba936
commit 56a517e47c
2 changed files with 27 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
{ stdenv
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "sphinxcontrib-jsmath";
version = "1.0.1";
src = fetchPypi {
inherit pname version;
sha256 = "a9925e4a4587247ed2191a22df5f6970656cb8ca2bd6284309578f2153e0c4b8";
};
# Check is disabled due to circular dependency of sphinx
doCheck = false;
meta = with stdenv.lib; {
description = "sphinxcontrib-jsmath is a sphinx extension which renders display math in HTML via JavaScript.";
homepage = http://sphinx-doc.org/;
license = licenses.bsd0;
};
}