1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 babel,
6 humanize,
7 python-dateutil,
8 pytz,
9 tzlocal,
10}:
11
12buildPythonPackage rec {
13 pname = "delorean";
14 version = "1.0.0";
15 format = "setuptools";
16
17 src = fetchPypi {
18 pname = "Delorean";
19 inherit version;
20 hash = "sha256-/md4bhIzhSOEi+xViKZYxNQl4S1T61HP74cL7I9XYTQ=";
21 };
22
23 propagatedBuildInputs = [
24 babel
25 humanize
26 python-dateutil
27 pytz
28 tzlocal
29 ];
30
31 pythonImportsCheck = [ "delorean" ];
32
33 # test data not included
34 doCheck = false;
35
36 meta = with lib; {
37 description = "Delorean: Time Travel Made Easy";
38 homepage = "https://github.com/myusuf3/delorean";
39 license = licenses.mit;
40 maintainers = with maintainers; [ globin ];
41 };
42}