Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 27 lines 562 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, isPy27 5}: 6 7buildPythonPackage rec { 8 pname = "sphinxcontrib-qthelp"; 9 version = "1.0.3"; 10 disabled = isPy27; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "4c33767ee058b70dba89a6fc5c1892c0d57a54be67ddd3e7875a18d14cba5a72"; 15 }; 16 17 18 # Check is disabled due to circular dependency of sphinx 19 doCheck = false; 20 21 meta = with lib; { 22 description = "sphinxcontrib-qthelp is a sphinx extension which outputs QtHelp document."; 23 homepage = "http://sphinx-doc.org/"; 24 license = licenses.bsd0; 25 }; 26 27}