python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / time-decode / default.nix
blob28fcaea73e7a3c9c0657cc0ed8dbf5cc7ea26828
1 { lib
2 , fetchFromGitHub
3 , python3
4 }:
6 python3.pkgs.buildPythonApplication rec {
7   pname = "time-decode";
8   version = "4.1.2";
10   src = fetchFromGitHub {
11     owner = "digitalsleuth";
12     repo = "time_decode";
13     rev = "refs/tags/v${version}";
14     sha256 = "sha256-79TReAEHvLldp0n3jTvws3mFE/1O1h6TocjMHrurwt4=";
15   };
17   propagatedBuildInputs = with python3.pkgs; [
18     colorama
19     python-dateutil
20   ];
22   # Project has no tests
23   doCheck = false;
25   pythonImportsCheck = [ "time_decode" ];
27   meta = with lib; {
28     description = "Timestamp and date decoder";
29     homepage = "https://github.com/digitalsleuth/time_decode";
30     license = with licenses; [ mit ];
31     maintainers = with maintainers; [ fab ];
32   };