about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorPeder Bergebakken Sundt <pbsds@hotmail.com>2024-03-14 00:10:19 +0100
committerGitHub <noreply@github.com>2024-03-14 00:10:19 +0100
commit76878843253e33c22aadd1ea3ffc806d266889d4 (patch)
tree0afc825af51cfa99cb8f6eb5a69c3259b11a7ac8 /pkgs
parent229574105fd4c3f28ea497eb8b0e9eed1eca364e (diff)
parent6486c02a57362a1221e4a4026b7884344515b1db (diff)
downloadnixlib-76878843253e33c22aadd1ea3ffc806d266889d4.tar
nixlib-76878843253e33c22aadd1ea3ffc806d266889d4.tar.gz
nixlib-76878843253e33c22aadd1ea3ffc806d266889d4.tar.bz2
nixlib-76878843253e33c22aadd1ea3ffc806d266889d4.tar.lz
nixlib-76878843253e33c22aadd1ea3ffc806d266889d4.tar.xz
nixlib-76878843253e33c22aadd1ea3ffc806d266889d4.tar.zst
nixlib-76878843253e33c22aadd1ea3ffc806d266889d4.zip
Merge pull request #295621 from r-ryantm/auto-update/python312Packages.whenever
python312Packages.whenever: 0.3.4 -> 0.4.0
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/whenever/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/whenever/default.nix b/pkgs/development/python-modules/whenever/default.nix
index 20d05c8bbaf3..4642da2b3ace 100644
--- a/pkgs/development/python-modules/whenever/default.nix
+++ b/pkgs/development/python-modules/whenever/default.nix
@@ -13,7 +13,7 @@
 
 buildPythonPackage rec {
   pname = "whenever";
-  version = "0.3.4";
+  version = "0.4.0";
   pyproject = true;
 
   disabled = pythonOlder "3.8";
@@ -21,8 +21,8 @@ buildPythonPackage rec {
   src = fetchFromGitHub {
     owner = "ariebovenberg";
     repo = "whenever";
-    rev = version;
-    hash = "sha256-pVbR9KYothEPJUhvFA3hDnLcKp7hvU8ntxvkYrKxQfQ=";
+    rev = "refs/tags/${version}";
+    hash = "sha256-vZRdt3Vxndp0iwA5uwMHSbzQZZZc5+tBWh3tMJYfIaU=";
   };
 
   postPatch = ''