1a04744f74
There is no need to disable Python packages for Python versions that are
no longer in Nixpkgs.
This change was generated using the following script:
pattern='^\s*disabled\s*=\s*pythonOlder\s*"3\.\([0-9]\|10\)"\s*;\s*$'
for f in $(find -name '*.nix'); do
grep -q "$pattern" "$f" || continue
sed -i "/$pattern/d" "$f"
if [ $(grep -c pythonOlder "$f") == 1 ]; then
sed -i '/^\s*pythonOlder,\s*$/d' "$f"
fi
nixfmt "$f"
done
41 lines
806 B
Nix
41 lines
806 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
defusedxml,
|
|
flit-core,
|
|
fetchFromGitHub,
|
|
pytestCheckHook,
|
|
sphinx,
|
|
}:
|
|
|
|
buildPythonPackage {
|
|
pname = "breathe";
|
|
version = "4.35.0-unstable-2025-01-16";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "breathe-doc";
|
|
repo = "breathe";
|
|
rev = "9711e826e0c46a635715e5814a83cab9dda79b7b"; # 4.35.0 lacks sphinx 7.2+ compat
|
|
hash = "sha256-Ie+8RLWeBgbC4s3TC6ege2YNdfdM0d906BPxB7EOwq8=";
|
|
};
|
|
|
|
build-system = [ flit-core ];
|
|
|
|
dependencies = [ sphinx ];
|
|
|
|
nativeCheckInputs = [
|
|
defusedxml
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [ "breathe" ];
|
|
|
|
meta = {
|
|
description = "Sphinx Doxygen renderer";
|
|
mainProgram = "breathe-apidoc";
|
|
homepage = "https://github.com/breathe-doc/breathe";
|
|
license = lib.licenses.bsd3;
|
|
};
|
|
}
|