Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / delorean / default.nix
blob8573dc7095f5ab91bc9c3a36c9af0350a42bba6b
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , babel
5 , humanize
6 , python-dateutil
7 , pytz
8 , tzlocal
9 }:
11 buildPythonPackage rec {
12   pname = "Delorean";
13   version = "1.0.0";
14   format = "setuptools";
16   src = fetchPypi {
17     inherit pname version;
18     hash = "sha256-/md4bhIzhSOEi+xViKZYxNQl4S1T61HP74cL7I9XYTQ=";
19   };
21   propagatedBuildInputs = [
22     babel
23     humanize
24     python-dateutil
25     pytz
26     tzlocal
27   ];
29   pythonImportsCheck = [
30     "delorean"
31   ];
33   # test data not included
34   doCheck = false;
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   };