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