about summary refs log tree commit diff
path: root/pkgs/development/python-modules/tzlocal/default.nix
blob: 1c61d0afab3b8ef046ebb2a82d41963e206c7620 (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
{ stdenv, buildPythonPackage, fetchPypi
, tzlocal, pytz }:

buildPythonPackage rec {
  name = "${pname}-${version}";
  pname = "tzlocal";
  version = "1.5.1";

  propagatedBuildInputs = [ pytz ];

  src = fetchPypi {
    inherit pname version;
    sha256 = "4ebeb848845ac898da6519b9b31879cf13b6626f7184c496037b818e238f2c4e";
  };

  # test fail (timezone test fail)
  doCheck = false;

  meta = with stdenv.lib; {
    description = "Tzinfo object for the local timezone";
    homepage = https://github.com/regebro/tzlocal;
    license = licenses.cddl;
  };
}