1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-21 17:01:10 +03:00
nixpkgs/pkgs/development/python-modules/sphinx-togglebutton/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

40 lines
726 B
Nix
Raw Normal View History

{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
wheel,
docutils,
sphinx,
}:
buildPythonPackage rec {
pname = "sphinx-togglebutton";
version = "0.3.2";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-qwyLNmQnsB5MiYAtXQeEcsQn+m6dEtUhw0+gRCVZ3Ho=";
};
nativeBuildInputs = [
setuptools
wheel
];
propagatedBuildInputs = [
docutils
sphinx
];
pythonImportsCheck = [ "sphinx_togglebutton" ];
meta = with lib; {
description = "Toggle page content and collapse admonitions in Sphinx";
homepage = "https://github.com/executablebooks/sphinx-togglebutton";
license = licenses.mit;
2024-04-24 04:20:00 +00:00
maintainers = with maintainers; [ ];
};
}