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
···
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
···
1
+
{ lib
2
+
, fetchFromGitHub
3
+
, python3
4
+
}:
5
+
6
+
python3.pkgs.buildPythonApplication rec {
7
+
pname = "time-decode";
8
+
version = "3.2.0";
9
+
10
+
src = fetchFromGitHub {
11
+
owner = "digitalsleuth";
12
+
repo = "time_decode";
13
+
rev = "v${version}";
14
+
sha256 = "1iwqdq1ail04hs8pkb6rxan4ng2jl2iar6pk72skj41xh4qhlyg6";
15
+
};
16
+
17
+
propagatedBuildInputs = with python3.pkgs; [
18
+
colorama
19
+
python-dateutil
20
+
];
21
+
22
+
# Project has no tests
23
+
doCheck = false;
24
+
25
+
pythonImportsCheck = [ "time_decode" ];
26
+
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
+
};
33
+
}
+2
pkgs/top-level/all-packages.nix
···
9662
9663
tinyproxy = callPackage ../tools/networking/tinyproxy { };
9664
0
0
9665
tio = callPackage ../tools/misc/tio { };
9666
9667
tiv = callPackage ../applications/misc/tiv { };
···
9662
9663
tinyproxy = callPackage ../tools/networking/tinyproxy { };
9664
9665
+
time-decode = callPackage ../tools/misc/time-decode { };
9666
+
9667
tio = callPackage ../tools/misc/tio { };
9668
9669
tiv = callPackage ../applications/misc/tiv { };