tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
time-decode: init at 3.2.0
Fabian Affolter
4 years ago
fd7f7bd0
62eff259
+35
2 changed files
expand all
collapse all
unified
split
pkgs
tools
misc
time-decode
default.nix
top-level
all-packages.nix
+33
pkgs/tools/misc/time-decode/default.nix
···
1
1
+
{ lib
2
2
+
, fetchFromGitHub
3
3
+
, python3
4
4
+
}:
5
5
+
6
6
+
python3.pkgs.buildPythonApplication rec {
7
7
+
pname = "time-decode";
8
8
+
version = "3.2.0";
9
9
+
10
10
+
src = fetchFromGitHub {
11
11
+
owner = "digitalsleuth";
12
12
+
repo = "time_decode";
13
13
+
rev = "v${version}";
14
14
+
sha256 = "1iwqdq1ail04hs8pkb6rxan4ng2jl2iar6pk72skj41xh4qhlyg6";
15
15
+
};
16
16
+
17
17
+
propagatedBuildInputs = with python3.pkgs; [
18
18
+
colorama
19
19
+
python-dateutil
20
20
+
];
21
21
+
22
22
+
# Project has no tests
23
23
+
doCheck = false;
24
24
+
25
25
+
pythonImportsCheck = [ "time_decode" ];
26
26
+
27
27
+
meta = with lib; {
28
28
+
description = "Timestamp and date decoder";
29
29
+
homepage = "https://github.com/digitalsleuth/time_decode";
30
30
+
license = with licenses; [ mit ];
31
31
+
maintainers = with maintainers; [ fab ];
32
32
+
};
33
33
+
}
+2
pkgs/top-level/all-packages.nix
···
9662
9662
9663
9663
tinyproxy = callPackage ../tools/networking/tinyproxy { };
9664
9664
9665
9665
+
time-decode = callPackage ../tools/misc/time-decode { };
9666
9666
+
9665
9667
tio = callPackage ../tools/misc/tio { };
9666
9668
9667
9669
tiv = callPackage ../applications/misc/tiv { };