6 python3.pkgs.buildPythonApplication rec {
12 inherit pname version;
13 hash = "sha256-PpNBfa4g14l8gm9+PxOFc2NDey031D7Ohutx2OGUeak=";
16 nativeBuildInputs = with python3.pkgs; [
22 propagatedBuildInputs = with python3.pkgs; [
32 nativeCheckInputs = with python3.pkgs; [
37 "-W" "ignore::sphinx.deprecation.RemovedInSphinx90Warning"
38 "--rootdir" "src/ablog"
39 "-W" "ignore::sphinx.deprecation.RemovedInSphinx90Warning" # Ignore ImportError
43 description = "ABlog for blogging with Sphinx";
44 mainProgram = "ablog";
45 homepage = "https://ablog.readthedocs.io/en/latest/";
46 license = licenses.mit;
47 maintainers = with maintainers; [ rgrinberg ];