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