Skip to content

Commit 119988c

Browse files
sphinxcontrib-moderncmakedomain init at 3.29.0 (#305426)
2 parents c2bf12d + c2a6507 commit 119988c

File tree

3 files changed

+49
-0
lines changed

3 files changed

+49
-0
lines changed

maintainers/maintainer-list.nix

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10303,6 +10303,13 @@
1030310303
githubId = 2502736;
1030410304
name = "James Hillyerd";
1030510305
};
10306+
jhol = {
10307+
name = "Joel Holdsworth";
10308+
email = "[email protected]";
10309+
github = "jhol";
10310+
githubId = 1449493;
10311+
keys = [ { fingerprint = "08F7 2546 95DE EAEF 03DE B0E4 D874 562D DC99 D889"; } ];
10312+
};
1030610313
jhollowe = {
1030710314
email = "[email protected]";
1030810315
github = "jhollowe";
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
{
2+
lib,
3+
buildPythonPackage,
4+
defusedxml,
5+
fetchPypi,
6+
hatchling,
7+
pytestCheckHook,
8+
sphinx,
9+
}:
10+
11+
buildPythonPackage rec {
12+
pname = "sphinxcontrib-moderncmakedomain";
13+
version = "3.29.0";
14+
pyproject = true;
15+
16+
src = fetchPypi {
17+
inherit version;
18+
pname = "sphinxcontrib_moderncmakedomain";
19+
hash = "sha256-NYfe8kH/JXfQu+8RgQoILp3sG3ij1LSgZiQLXz3BtbI=";
20+
};
21+
22+
build-system = [ hatchling ];
23+
24+
dependencies = [ sphinx ];
25+
26+
nativeCheckInputs = [
27+
defusedxml
28+
pytestCheckHook
29+
sphinx
30+
];
31+
32+
pythonNamespaces = [ "sphinxcontrib" ];
33+
34+
meta = with lib; {
35+
description = "Sphinx extension which renders CMake documentation";
36+
homepage = "https://github.com/scikit-build/moderncmakedomain";
37+
license = licenses.bsd3;
38+
maintainers = with maintainers; [ jhol ];
39+
};
40+
}

pkgs/top-level/python-packages.nix

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14993,6 +14993,8 @@ self: super: with self; {
1499314993

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

14996+
sphinxcontrib-moderncmakedomain = callPackage ../development/python-modules/sphinxcontrib-moderncmakedomain { };
14997+
1499614998
sphinxcontrib-nwdiag = callPackage ../development/python-modules/sphinxcontrib-nwdiag { };
1499714999

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

0 commit comments

Comments
 (0)