Unverified Commit d7356ad0 authored by Anton Mosich's avatar Anton Mosich
Browse files

todoman: 4.4.0 -> 4.5.0

See https://github.com/pimutils/todoman/blob/v4.5.0/CHANGELOG.rst#L7-L18
for the changelog. Removes pytz dependency.
parent d49f91d7
Loading
Loading
Loading
Loading
+4 −5
Original line number Diff line number Diff line
@@ -8,14 +8,14 @@

python3.pkgs.buildPythonApplication rec {
  pname = "todoman";
  version = "4.4.0";
  version = "4.5.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "pimutils";
    repo = "todoman";
    rev = "refs/tags/v${version}";
    hash = "sha256-5tQaNT6QVN9mxa9t6OvMux4ZGy4flUqszTAwet2QL0w=";
    hash = "sha256-sk5LgFNo5Dc+oHCLu464Q1g0bk1QGsA7xMtMiits/8c=";
  };

  nativeBuildInputs = [
@@ -34,9 +34,7 @@ python3.pkgs.buildPythonApplication rec {
    humanize
    icalendar
    parsedatetime
    python-dateutil
    pyxdg
    pytz
    tabulate
    urwid
  ];
@@ -44,8 +42,9 @@ python3.pkgs.buildPythonApplication rec {
  nativeCheckInputs = with python3.pkgs; [
    freezegun
    hypothesis
    pytestCheckHook
    pytest-cov-stub
    pytestCheckHook
    pytz
  ];

  postInstall = ''