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