Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / sphinxcontrib-applehelp / default.nix
blob9c3c16657f29127e1ff90da47354e737fea3f494
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , isPy27
5 }:
7 buildPythonPackage rec {
8   pname = "sphinxcontrib-applehelp";
9   version = "1.0.2";
10   disabled = isPy27;
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "a072735ec80e7675e3f432fcae8610ecf509c5f1869d17e2eecff44389cdbc58";
15   };
18   # Check is disabled due to circular dependency of sphinx
19   doCheck = false;
21   meta = with lib; {
22     description = "sphinxcontrib-applehelp is a sphinx extension which outputs Apple help books";
23     homepage = "http://sphinx-doc.org/";
24     license = licenses.bsd0;
25   };