Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 flit-core,
6}:
7
8buildPythonPackage rec {
9 pname = "sphinxcontrib-qthelp";
10 version = "2.0.0";
11 pyproject = true;
12
13 src = fetchPypi {
14 pname = "sphinxcontrib_qthelp";
15 inherit version;
16 hash = "sha256-T+fQrI/BcQRb5iOro+Ko9hP4aCcx+RU7suQOzha5u6s=";
17 };
18
19 nativeBuildInputs = [ flit-core ];
20
21 # Check is disabled due to circular dependency of sphinx
22 dontCheckRuntimeDeps = true;
23 doCheck = false;
24
25 pythonNamespaces = [ "sphinxcontrib" ];
26
27 meta = {
28 description = "Sphinx extension which outputs QtHelp document";
29 homepage = "https://github.com/sphinx-doc/sphinxcontrib-qthelp";
30 license = lib.licenses.bsd2;
31 };
32}