Skip to content

Commit

Permalink
python312Packages.sphinx-click: init at 5.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
octvs committed Nov 13, 2024
1 parent e26f34f commit 1bea7e5
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
24 changes: 24 additions & 0 deletions pkgs/development/python-modules/sphinx-click/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
lib,
buildPythonPackage,
fetchPypi,
pbr,
}:
buildPythonPackage rec {
pname = "sphinx-click";
version = "5.1.0";

src = fetchPypi {
inherit pname version;
hash = "sha256-aBLC22LT+ucaSt2+WooKFsl+tJHzzWP+NLTtfgcjbzM=";
};

propagatedBuildInputs = [ pbr ];

meta = {
homepage = "https://github.com/click-contrib/sphinx-click";
description = "Sphinx extension that automatically documents click applications";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.octvs ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15049,6 +15049,8 @@ self: super: with self; {

sphinx-basic-ng = callPackage ../development/python-modules/sphinx-basic-ng { };

sphinx-click = callPackage ../development/python-modules/sphinx-click { };

sphinx-copybutton = callPackage ../development/python-modules/sphinx-copybutton { };

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

0 comments on commit 1bea7e5

Please sign in to comment.