annextimelog: 0.14.0 -> 0.15.0

and add running tests
This commit is contained in:
Yann Büchau
2025-05-16 11:41:35 +02:00
parent 86628e2b8d
commit 27dbbf575f
+5 -2
View File
@@ -18,14 +18,14 @@ let
in
python3.pkgs.buildPythonApplication rec {
pname = "annextimelog";
version = "0.14.0";
version = "0.15.0";
format = "pyproject";
src = fetchFromGitLab {
owner = "nobodyinperson";
repo = "annextimelog";
rev = "v${version}";
hash = "sha256-+3PkG33qKckagSVvVdqkypulO7uu5AMOv8fQiP8IUbs=";
hash = "sha256-RfqBtbfArFva3TVJGF4STx0QTio62qxXaM23lsLYLUg=";
};
pythonRelaxDeps = [ "rich" ];
@@ -33,12 +33,15 @@ python3.pkgs.buildPythonApplication rec {
nativeBuildInputs =
with python3.pkgs;
[
unittestCheckHook
setuptools
wheel
poetry-core
]
++ [ tzdata ];
unittestFlags = [ "-vb" ];
propagatedBuildInputs = with python3.pkgs; [
rich
];