world-wall-clock: fix build and update (#453964)

This commit is contained in:
Aleksana
2025-11-16 14:34:33 +00:00
committed by GitHub

View File

@@ -6,14 +6,14 @@
python3.pkgs.buildPythonApplication rec {
pname = "world-wall-clock";
version = "0.1.4";
version = "0.1.5";
pyproject = true;
src = fetchFromGitHub {
owner = "ddelabru";
repo = "world-wall-clock";
tag = "v${version}";
hash = "sha256-OTBYSStCFBrZ8JutrhyyJpi7vRvBAUK0EKTtjvbi13I=";
hash = "sha256-gwJvoXSq8H+sMTyBEA1N+KxnkGxyt5Ev+V3awCBiILg=";
};
build-system = with python3.pkgs; [ poetry-core ];
@@ -24,6 +24,10 @@ python3.pkgs.buildPythonApplication rec {
xdg-base-dirs
];
pythonRelaxDeps = [
"urwid"
];
nativeCheckInputs = with python3.pkgs; [ pytestCheckHook ];
enabledTestPaths = [ "tests/*" ];