Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib 2, buildPythonPackage 3, fetchPypi 4, isPy27 5}: 6 7buildPythonPackage rec { 8 pname = "sphinxcontrib-jsmath"; 9 version = "1.0.1"; 10 disabled = isPy27; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "a9925e4a4587247ed2191a22df5f6970656cb8ca2bd6284309578f2153e0c4b8"; 15 }; 16 17 # Check is disabled due to circular dependency of sphinx 18 doCheck = false; 19 20 meta = with lib; { 21 description = "sphinxcontrib-jsmath is a sphinx extension which renders display math in HTML via JavaScript."; 22 homepage = "https://github.com/sphinx-doc/sphinxcontrib-jsmath"; 23 license = licenses.bsd0; 24 maintainers = teams.sphinx.members; 25 }; 26}