1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-22 09:20:58 +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.

41 lines
723 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; [ ];
};
}