Skip to content

Commit

Permalink
sphinxcontrib-moderncmakedomain init at 3.27.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jhol committed Apr 20, 2024
1 parent c6d6ab9 commit 99a89ea
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{ lib
, buildPythonPackage
, fetchPypi
, isPy27
, hatchling
, sphinx
}:

buildPythonPackage rec {
pname = "sphinxcontrib-moderncmakedomain";
version = "3.27.0";
disabled = isPy27;
pyproject = true;

src = fetchPypi {
inherit version;
pname = "sphinxcontrib_moderncmakedomain";
hash = "sha256-UeJZ6R9Y0XzA+skwf9QBBqpZ1ayqdBiHkD/DZgNh0aE=";
};

nativeBuildInputs = [
hatchling
sphinx
];

pythonNamespaces = [ "sphinxcontrib" ];

meta = with lib; {
description = "sphinxcontrib-moderncmakedomain is a Sphinx extension which renders CMake documentation.";
homepage = "https://github.com/scikit-build/moderncmakedomain";
license = licenses.bsd3;
maintainers = teams.sphinx.members;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14214,6 +14214,8 @@ self: super: with self; {

sphinxcontrib-log-cabinet = callPackage ../development/python-modules/sphinxcontrib-log-cabinet { };

sphinxcontrib-moderncmakedomain = callPackage ../development/python-modules/sphinxcontrib-moderncmakedomain { };

sphinxcontrib-nwdiag = callPackage ../development/python-modules/sphinxcontrib-nwdiag { };

sphinxcontrib-newsfeed = callPackage ../development/python-modules/sphinxcontrib-newsfeed { };
Expand Down

0 comments on commit 99a89ea

Please sign in to comment.