Unverified Commit 2bb9553e authored by Aleksana's avatar Aleksana Committed by GitHub
Browse files

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

parents 81061189 f31c99b3
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -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/*" ];