python311Packages.sphinxcontrib-qthelp: 1.0.3 -> 1.0.6
This commit is contained in:
@@ -1,19 +1,27 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, isPy27
|
||||
, pythonOlder
|
||||
, flit-core
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "sphinxcontrib-qthelp";
|
||||
version = "1.0.3";
|
||||
disabled = isPy27;
|
||||
version = "1.0.6";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.9";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "4c33767ee058b70dba89a6fc5c1892c0d57a54be67ddd3e7875a18d14cba5a72";
|
||||
pname = "sphinxcontrib_qthelp";
|
||||
inherit version;
|
||||
hash = "sha256-YrnRoYarf17jNW2Qb2SMrLemvblNIB7nrfJttVCSmC0=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
flit-core
|
||||
];
|
||||
|
||||
# Check is disabled due to circular dependency of sphinx
|
||||
doCheck = false;
|
||||
|
||||
@@ -22,7 +30,7 @@ buildPythonPackage rec {
|
||||
meta = with lib; {
|
||||
description = "sphinxcontrib-qthelp is a sphinx extension which outputs QtHelp document.";
|
||||
homepage = "https://github.com/sphinx-doc/sphinxcontrib-qthelp";
|
||||
license = licenses.bsd0;
|
||||
license = licenses.bsd2;
|
||||
maintainers = teams.sphinx.members;
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user