lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python311Packages.sphinxcontrib-devhelp: 1.0.2 -> 1.0.5

+14 -4
+14 -4
pkgs/development/python-modules/sphinxcontrib-devhelp/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchPypi 4 + , pythonOlder 5 + , flit-core 4 6 }: 5 7 6 8 buildPythonPackage rec { 7 9 pname = "sphinxcontrib-devhelp"; 8 - version = "1.0.2"; 10 + version = "1.0.5"; 11 + pyproject = true; 12 + 13 + disabled = pythonOlder "3.9"; 9 14 10 15 src = fetchPypi { 11 - inherit pname version; 12 - sha256 = "ff7f1afa7b9642e7060379360a67e9c41e8f3121f2ce9164266f61b9f4b338e4"; 16 + pname = "sphinxcontrib_devhelp"; 17 + inherit version; 18 + hash = "sha256-Y7QeDTggfKQOu+q89NjlH3bAPnjNYavhGM9ENcc9QhI="; 13 19 }; 20 + 21 + nativeBuildInputs = [ 22 + flit-core 23 + ]; 14 24 15 25 # Check is disabled due to circular dependency of sphinx 16 26 doCheck = false; ··· 20 30 meta = with lib; { 21 31 description = "sphinxcontrib-devhelp is a sphinx extension which outputs Devhelp document."; 22 32 homepage = "https://github.com/sphinx-doc/sphinxcontrib-devhelp"; 23 - license = licenses.bsd0; 33 + license = licenses.bsd2; 24 34 maintainers = teams.sphinx.members; 25 35 }; 26 36 }