about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2022-12-04 13:59:21 +0100
committerGitHub <noreply@github.com>2022-12-04 13:59:21 +0100
commita6607bae968cec8840ce5a923338a57585fae21e (patch)
treeeae1cdaa8f07e8a25f27833696f36408e6a2eb2c /pkgs/tools
parentb1e9fe3b528f35a9a2d3f99a70d984809a136d26 (diff)
time-decode: add changelog to meta
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/misc/time-decode/default.nix8
1 files changed, 6 insertions, 2 deletions
diff --git a/pkgs/tools/misc/time-decode/default.nix b/pkgs/tools/misc/time-decode/default.nix
index fb5e27ba276e8..03b2e04dffe8d 100644
--- a/pkgs/tools/misc/time-decode/default.nix
+++ b/pkgs/tools/misc/time-decode/default.nix
@@ -6,12 +6,13 @@
 python3.pkgs.buildPythonApplication rec {
   pname = "time-decode";
   version = "4.2.0";
+  format = "setuptools";
 
   src = fetchFromGitHub {
     owner = "digitalsleuth";
     repo = "time_decode";
     rev = "refs/tags/v${version}";
-    sha256 = "sha256-6OSa8tOTAzQbi5aYPDJotWApeh8E3wi4V7RN16Go/E4=";
+    hash = "sha256-6OSa8tOTAzQbi5aYPDJotWApeh8E3wi4V7RN16Go/E4=";
   };
 
   propagatedBuildInputs = with python3.pkgs; [
@@ -22,11 +23,14 @@ python3.pkgs.buildPythonApplication rec {
   # Project has no tests
   doCheck = false;
 
-  pythonImportsCheck = [ "time_decode" ];
+  pythonImportsCheck = [
+    "time_decode"
+  ];
 
   meta = with lib; {
     description = "Timestamp and date decoder";
     homepage = "https://github.com/digitalsleuth/time_decode";
+    changelog = "https://github.com/digitalsleuth/time_decode/releases/tag/v${version}";
     license = with licenses; [ mit ];
     maintainers = with maintainers; [ fab ];
   };