summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/arrow/default.nix
blob: 56dcf4e28452ddd785dfc721d3aed65380221f15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
  lib,
  buildPythonPackage,
  fetchPypi,
  flit-core,
  python-dateutil,
  types-python-dateutil,
  pytestCheckHook,
  pytest-mock,
  pytz,
  simplejson,
}:

buildPythonPackage rec {
  pname = "arrow";
  version = "1.3.0";
  pyproject = true;

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-1FQGF2SMtfiVcw8a2MgqZfLa0BZvV7dfPKVHWcTWeoU=";
  };

  postPatch = ''
    # no coverage reports
    sed -i "/addopts/d" tox.ini
  '';

  nativeBuildInputs = [ flit-core ];

  propagatedBuildInputs = [
    python-dateutil
    types-python-dateutil
  ];

  nativeCheckInputs = [
    pytestCheckHook
    pytest-mock
    pytz
    simplejson
  ];

  # ParserError: Could not parse timezone expression "America/Nuuk"
  disabledTests = [ "test_parse_tz_name_zzz" ];

  pythonImportsCheck = [ "arrow" ];

  meta = {
    description = "Python library for date manipulation";
    homepage = "https://github.com/crsmithdev/arrow";
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ thoughtpolice ];
  };
}