summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/beancount/2.nix
blob: 0af83d1525604c1e889dcee2d8baa3d96c276452 (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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
  lib,
  buildPythonPackage,
  fetchPypi,
  isPy3k,
  beautifulsoup4,
  bottle,
  chardet,
  python-dateutil,
  google-api-python-client,
  google-auth-oauthlib,
  lxml,
  oauth2client,
  ply,
  pytest,
  python-magic,
  requests,
}:

buildPythonPackage rec {
  version = "2.3.6";
  format = "setuptools";
  pname = "beancount";

  disabled = !isPy3k;

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-gB+Tvta1fS4iQ2aIxInVob8fduIQ887RhoB1fmDTR1o=";
  };

  # Tests require files not included in the PyPI archive.
  doCheck = false;

  propagatedBuildInputs = [
    beautifulsoup4
    bottle
    chardet
    python-dateutil
    google-api-python-client
    google-auth-oauthlib
    lxml
    oauth2client
    ply
    python-magic
    requests
    # pytest really is a runtime dependency
    # https://github.com/beancount/beancount/blob/v2/setup.py#L81-L82
    pytest
  ];

  # beancount cannot be directly bumped to 3.x
  # e.g. https://github.com/NixOS/nixpkgs/issues/380197
  passthru.skipBulkUpdate = true;

  meta = {
    homepage = "https://github.com/beancount/beancount";
    description = "Double-entry bookkeeping computer language";
    longDescription = ''
      A double-entry bookkeeping computer language that lets you define
      financial transaction records in a text file, read them in memory,
      generate a variety of reports from them, and provides a web interface.
    '';
    license = lib.licenses.gpl2Only;
    maintainers = with lib.maintainers; [
      sharzy
      polarmutex
    ];
  };
}