Skip to content

Commit

Permalink
Merge pull request #109565 from HolgerPeters/master
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperSandro2000 committed Jan 31, 2021
2 parents 94b3465 + f11000e commit 51f74e3
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 0 deletions.
6 changes: 6 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3741,6 +3741,12 @@
githubId = 130903;
name = "Ana Hobden";
};
holgerpeters = {
name = "Holger Peters";
email = "holger.peters@posteo.de";
github = "HolgerPeters";
githubId = 4097049;
};
hrdinka = {
email = "c.nix@hrdinka.at";
github = "hrdinka";
Expand Down
30 changes: 30 additions & 0 deletions pkgs/development/python-modules/sphinx-autobuild/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{ lib
, stdenv
, buildPythonPackage
, fetchPypi
, sphinx
, livereload
}:

buildPythonPackage rec {
pname = "sphinx-autobuild";
version = "2020.9.1";

src = fetchPypi {
inherit pname version;
sha256 = "1vbaf4vrxahylyp8zrlw5dx1d2faajp926c3pl5i1wlkp1yll62b";
};

propagatedBuildInputs = [ sphinx livereload ];

# No tests included.
doCheck = false;
pythonImportsCheck = [ "sphinx_autobuild" ];

meta = with lib; {
description = "Rebuild Sphinx documentation on changes, with live-reload in the browser";
homepage = "https://github.com/executablebooks/sphinx-autobuild";
license = with licenses; [ mit ];
maintainer = with maintainers; [holgerpeters];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7343,6 +7343,8 @@ in {

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

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

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

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

0 comments on commit 51f74e3

Please sign in to comment.