1{ lib
2, buildPythonPackage
3, fetchPypi
4, babel
5, humanize
6, python-dateutil
7, pytz
8, tzlocal
9}:
10
11buildPythonPackage rec {
12 pname = "Delorean";
13 version = "1.0.0";
14 format = "setuptools";
15
16 src = fetchPypi {
17 inherit pname version;
18 hash = "sha256-/md4bhIzhSOEi+xViKZYxNQl4S1T61HP74cL7I9XYTQ=";
19 };
20
21 propagatedBuildInputs = [
22 babel
23 humanize
24 python-dateutil
25 pytz
26 tzlocal
27 ];
28
29 pythonImportsCheck = [
30 "delorean"
31 ];
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}