blob: 8f450d2c03a802114d2879c64a5a54fb7a231dba (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "timeago";
version = "1.0.16";
format = "setuptools";
src = fetchFromGitHub {
owner = "hustcc";
repo = pname;
rev = version;
sha256 = "sha256-PqORJKAVrjezU/yP2ky3gb1XsM8obDI3GQzi+mok/OM=";
};
nativeCheckInputs = [
pytestCheckHook
];
pytestFlagsArray = [ "test/testcase.py" ];
pythonImportsCheck = [ "timeago" ];
meta = with lib; {
description = "Python module to format past datetime output";
homepage = "https://github.com/hustcc/timeago";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}
|