7 python3.pkgs.buildPythonApplication rec {
12 src = fetchFromGitHub {
16 hash = "sha256-Hx4iLO+Of2o4tmIDS17SxyswbW2+KMoD4BjB4q1KU9M=";
19 nativeBuildInputs = with python3.pkgs; [
25 propagatedBuildInputs = with python3.pkgs; [
35 nativeCheckInputs = with python3.pkgs; [
41 "-W" "ignore::sphinx.deprecation.RemovedInSphinx90Warning"
42 "--rootdir" "src/ablog"
43 "-W" "ignore::sphinx.deprecation.RemovedInSphinx90Warning" # Ignore ImportError
46 passthru.updateScript = gitUpdater { rev-prefix = "v"; };
49 description = "ABlog for blogging with Sphinx";
50 mainProgram = "ablog";
51 homepage = "https://ablog.readthedocs.io/en/latest/";
52 license = licenses.mit;
53 maintainers = with maintainers; [ rgrinberg ];