2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2019-10-21 23:37:07 +01:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2020-08-15 07:04:58 +01:00
|
|
|
, isPy27
|
2019-10-21 23:37:07 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "sphinxcontrib-jsmath";
|
|
|
|
version = "1.0.1";
|
2020-08-15 07:04:58 +01:00
|
|
|
disabled = isPy27;
|
2019-10-21 23:37:07 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "a9925e4a4587247ed2191a22df5f6970656cb8ca2bd6284309578f2153e0c4b8";
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
# Check is disabled due to circular dependency of sphinx
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-10-21 23:37:07 +01:00
|
|
|
description = "sphinxcontrib-jsmath is a sphinx extension which renders display math in HTML via JavaScript.";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://sphinx-doc.org/";
|
2019-10-21 23:37:07 +01:00
|
|
|
license = licenses.bsd0;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|