Merge pull request #248589 from tjni/ablog

ablog: 0.10.33.post1 -> 0.11.14.post1

authored by

Weijia Wang and committed by
GitHub
63157172 fc3d8dc7

+19 -10
+19 -10
pkgs/applications/misc/ablog/default.nix
··· 3 3 , fetchPypi 4 4 }: 5 5 6 - with python3.pkgs; 7 - 8 - buildPythonApplication rec { 6 + python3.pkgs.buildPythonApplication rec { 9 7 pname = "ablog"; 10 - version = "0.10.33.post1"; 8 + version = "0.11.4.post1"; 9 + format = "pyproject"; 11 10 12 11 src = fetchPypi { 13 12 inherit pname version; 14 - sha256 = "sha256-+vrVQ4sItCXrSCzNXyKk6/6oDBOyfyD7iNWzmcbE/BQ="; 13 + hash = "sha256-Zyvx7lVUQtjoGsSpFmH8pFrgTGgsFd4GMsL3fXKtUpU="; 15 14 }; 16 15 17 - propagatedBuildInputs = [ 16 + nativeBuildInputs = with python3.pkgs; [ 17 + setuptools 18 + setuptools-scm 19 + wheel 20 + ]; 21 + 22 + propagatedBuildInputs = with python3.pkgs; [ 23 + docutils 18 24 feedgen 19 - sphinx 20 25 invoke 21 - watchdog 26 + packaging 22 27 python-dateutil 28 + sphinx 29 + watchdog 23 30 ]; 24 31 25 - nativeCheckInputs = [ 32 + nativeCheckInputs = with python3.pkgs; [ 26 33 pytestCheckHook 27 34 ]; 28 35 29 - nativeBuildInputs = [ setuptools-scm ]; 36 + pytestFlagsArray = [ 37 + "--rootdir" "src/ablog" 38 + ]; 30 39 31 40 meta = with lib; { 32 41 description = "ABlog for blogging with Sphinx";