nixpkgs/pkgs/development/python-modules/sphinx-autobuild/default.nix
Holger Peters f11000ea50 sphinx-autobuild: init at 2020.9.1
Python command line tool for autobuilding sphinx documentations.

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
Co-authored-by: Fabian Affolter <mail@fabian-affolter.ch>
2021-01-30 12:27:22 +01:00

31 lines
697 B
Nix

{ 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];
};
}