blob: f056cde2a6e811c0162ef14e371006d8c63756df (
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
34
35
36
37
38
39
40
41
42
|
{
lib,
buildPythonPackage,
fetchPypi,
babel,
humanize,
python-dateutil,
pytz,
tzlocal,
}:
buildPythonPackage rec {
pname = "delorean";
version = "1.0.0";
format = "setuptools";
src = fetchPypi {
pname = "Delorean";
inherit version;
hash = "sha256-/md4bhIzhSOEi+xViKZYxNQl4S1T61HP74cL7I9XYTQ=";
};
propagatedBuildInputs = [
babel
humanize
python-dateutil
pytz
tzlocal
];
pythonImportsCheck = [ "delorean" ];
# test data not included
doCheck = false;
meta = with lib; {
description = "Delorean: Time Travel Made Easy";
homepage = "https://github.com/myusuf3/delorean";
license = licenses.mit;
maintainers = with maintainers; [ globin ];
};
}
|