nixpkgs/pkgs/tools/misc/time-decode/default.nix
2022-12-04 13:59:21 +01:00

38 lines
831 B
Nix

{ lib
, fetchFromGitHub
, python3
}:
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}";
hash = "sha256-6OSa8tOTAzQbi5aYPDJotWApeh8E3wi4V7RN16Go/E4=";
};
propagatedBuildInputs = with python3.pkgs; [
colorama
python-dateutil
];
# Project has no tests
doCheck = false;
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 ];
};
}