My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/sphinx-togglebutton/default.nix

28 lines
630 B

{ lib
, buildPythonPackage
, fetchPypi
, wheel
, sphinx
, docutils
}:
buildPythonPackage rec {
pname = "sphinx-togglebutton";
version = "0.3.2";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-qwyLNmQnsB5MiYAtXQeEcsQn+m6dEtUhw0+gRCVZ3Ho=";
};
propagatedBuildInputs = [ wheel sphinx docutils ];
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;
maintainers = with maintainers; [ marsam ];
};
}