nixpkgs/pkgs/development/python-modules/beancount/default.nix

62 lines
1.3 KiB
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
, isPy3k
, beautifulsoup4
, bottle
, chardet
, python-dateutil
, google-api-python-client
, google-auth-oauthlib
, lxml
, oauth2client
, ply
, pytest
, python_magic
, requests
}:
2018-04-05 20:32:01 +00:00
buildPythonPackage rec {
2021-03-21 01:29:26 +00:00
version = "2.3.4";
2018-04-05 20:32:01 +00:00
pname = "beancount";
2018-04-05 20:32:01 +00:00
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
2021-03-21 01:29:26 +00:00
sha256 = "sha256-K/CM5qldmAAPTXM5WYXNHeuBwNUu1aduYQusd9gvhsA=";
};
2019-09-05 18:41:23 +00:00
# Tests require files not included in the PyPI archive.
doCheck = false;
2018-04-05 20:32:01 +00:00
propagatedBuildInputs = [
beautifulsoup4
bottle
chardet
python-dateutil
google-api-python-client
google-auth-oauthlib
lxml
2019-09-05 18:41:23 +00:00
oauth2client
ply
python_magic
2018-06-22 10:51:09 +00:00
requests
# pytest really is a runtime dependency
# https://github.com/beancount/beancount/blob/v2/setup.py#L81-L82
pytest
];
meta = with lib; {
homepage = "http://furius.ca/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.
'';
2021-02-21 18:41:39 +00:00
license = licenses.gpl2Only;
maintainers = with maintainers; [ bhipple ];
};
}