22 buildPythonPackage rec {
23 pname = "sphinx-autobuild";
24 version = "2024.09.19";
27 src = fetchFromGitHub {
29 repo = "sphinx-autobuild";
30 rev = "refs/tags/${version}";
31 hash = "sha256-azSQ524iXWeW7D1NgpWErFL4K0TBZ8ib6lRr1J246h4=";
34 build-system = [ flit-core ];
46 nativeCheckInputs = [ pytestCheckHook ];
48 pythonImportsCheck = [ "sphinx_autobuild" ];
51 description = "Rebuild Sphinx documentation on changes, with live-reload in the browser";
52 mainProgram = "sphinx-autobuild";
53 homepage = "https://github.com/sphinx-doc/sphinx-autobuild";
54 license = with licenses; [ mit ];
55 maintainers = with maintainers; [ holgerpeters ];