ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / sphinx-togglebutton / default.nix
blobf1056261fba1dae8de3f730f210e3771a69082cb
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , wheel
5 , sphinx
6 , docutils
7 }:
9 buildPythonPackage rec {
10   pname = "sphinx-togglebutton";
11   version = "0.3.2";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "sha256-qwyLNmQnsB5MiYAtXQeEcsQn+m6dEtUhw0+gRCVZ3Ho=";
16   };
18   propagatedBuildInputs = [ wheel sphinx docutils ];
20   pythonImportsCheck = [ "sphinx_togglebutton" ];
22   meta = with lib; {
23     description = "Toggle page content and collapse admonitions in Sphinx";
24     homepage = "https://github.com/executablebooks/sphinx-togglebutton";
25     license = licenses.mit;
26     maintainers = with maintainers; [ marsam ];
27   };