about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRobert Scott <code@humanleg.org.uk>2022-12-04 00:47:50 +0000
committerGitHub <noreply@github.com>2022-12-04 00:47:50 +0000
commitb4908d9803cb7386b05de093745726ac49c3a1f6 (patch)
tree4504a9c99f9032f4c193a09ff3d875cd1e31c7ad
parent827286644621668db80511bb579f43a56fb1b5cc (diff)
parentea8ce63366e5aa49767c55c40204207ce2f33547 (diff)
downloadnixlib-b4908d9803cb7386b05de093745726ac49c3a1f6.tar
nixlib-b4908d9803cb7386b05de093745726ac49c3a1f6.tar.gz
nixlib-b4908d9803cb7386b05de093745726ac49c3a1f6.tar.bz2
nixlib-b4908d9803cb7386b05de093745726ac49c3a1f6.tar.lz
nixlib-b4908d9803cb7386b05de093745726ac49c3a1f6.tar.xz
nixlib-b4908d9803cb7386b05de093745726ac49c3a1f6.tar.zst
nixlib-b4908d9803cb7386b05de093745726ac49c3a1f6.zip
Merge pull request #203830 from r-ryantm/auto-update/python3.10-tasklib
python310Packages.tasklib: 2.4.3 -> 2.5.1
-rw-r--r--pkgs/development/python-modules/tasklib/default.nix13
1 files changed, 9 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/tasklib/default.nix b/pkgs/development/python-modules/tasklib/default.nix
index ebc2d46fd989..8324f26e76e3 100644
--- a/pkgs/development/python-modules/tasklib/default.nix
+++ b/pkgs/development/python-modules/tasklib/default.nix
@@ -1,4 +1,8 @@
-{ lib, pythonPackages, taskwarrior, writeShellScriptBin }:
+{ lib
+, pythonPackages
+, taskwarrior
+, writeShellScriptBin
+}:
 
 with pythonPackages;
 
@@ -8,11 +12,11 @@ wsl_stub = writeShellScriptBin "wsl" "true";
 
 in buildPythonPackage rec {
   pname = "tasklib";
-  version = "2.4.3";
+  version = "2.5.1";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "b523bc12893d26c8173a6b8d84b16259c9a9c5acaaf8932bc018117f907b3bc5";
+    hash = "sha256-XM1zG1JjbdEEV6i42FjLDQJv+qsePnUbr3kb+APjfXs=";
   };
 
   propagatedBuildInputs = [
@@ -28,7 +32,8 @@ in buildPythonPackage rec {
 
   meta = with lib; {
     homepage = "https://github.com/robgolding/tasklib";
-    description = "A library for interacting with taskwarrior databases";
+    description = "Library for interacting with taskwarrior databases";
+    changelog = "https://github.com/GothenburgBitFactory/tasklib/releases/tag/${version}";
     maintainers = with maintainers; [ arcnmx ];
     platforms = platforms.all;
     license = licenses.bsd3;