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