Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "sphinxcontrib-serializinghtml"; 8 version = "1.1.3"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "c0efb33f8052c04fd7a26c0a07f1678e8512e0faec19f4aa8f2473a8b81d5227"; 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-serializinghtml is a sphinx extension which outputs \"serialized\" HTML files (json and pickle)."; 21 homepage = http://sphinx-doc.org/; 22 license = licenses.bsd0; 23 }; 24 25}