Advertisement
Guest User

beancount

a guest
Dec 18th, 2016
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Scheme 1.16 KB | None | 0 0
  1. (define-public beancount
  2.   (package
  3.     (name "beancount")
  4.     (version "2.0b13")
  5.     (source
  6.      (origin
  7.        (method url-fetch)
  8.        (uri (string-append
  9.              "https://pypi.python.org/packages/76/73/335733b436d66071aeaa9831c7411912c26ff039bb3cbfc1310f817641f7/beancount-"
  10.              version
  11.              ".tar.gz"))
  12.        (sha256
  13.         (base32
  14.          "16gkcq28bwd015b1qhdr5d7vhxid8xfn6ia4n9n8dnl5n448yqkm"))))
  15.     (build-system python-build-system)
  16.     (propagated-inputs
  17.      `(("python-setuptools" ,python-setuptools)
  18.        ("python-dateutil" ,python-dateutil@2.5.2)
  19.        ("python-bottle" ,python-bottle)
  20.        ("python-ply" ,python-ply)
  21.        ("python-lxml" ,python-lxml)
  22.        ("python-magic" ,python-magic)
  23.        ("python-beautifulsoup4" ,python-beautifulsoup4)))
  24.     (home-page "http://furius.ca/beancount")
  25.     (synopsis "Command-line Double-Entry Accounting")
  26.     (description
  27.      "A double-entry bookkeeping computer language that lets you define
  28. financial transaction records in a text file, read them in memory,
  29. generate a variety of reports from them, and provides a web interface.")
  30.     (license license:gpl3)))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement