2021-02-21 13:35:59 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, isPy3k
|
|
|
|
, beautifulsoup4
|
|
|
|
, bottle
|
|
|
|
, chardet
|
|
|
|
, dateutil
|
2021-03-05 15:21:18 +00:00
|
|
|
, google-api-python-client
|
2021-02-21 13:35:59 +00:00
|
|
|
, lxml
|
|
|
|
, oauth2client
|
|
|
|
, ply
|
|
|
|
, pytest
|
|
|
|
, python_magic
|
|
|
|
, requests
|
|
|
|
}:
|
2016-04-08 11:49:37 +01:00
|
|
|
|
2018-04-05 21:32:01 +01:00
|
|
|
buildPythonPackage rec {
|
2021-03-21 01:29:26 +00:00
|
|
|
version = "2.3.4";
|
2018-04-05 21:32:01 +01:00
|
|
|
pname = "beancount";
|
2016-04-08 11:49:37 +01:00
|
|
|
|
2018-04-05 21:32:01 +01:00
|
|
|
disabled = !isPy3k;
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-03-21 01:29:26 +00:00
|
|
|
sha256 = "sha256-K/CM5qldmAAPTXM5WYXNHeuBwNUu1aduYQusd9gvhsA=";
|
2016-04-08 11:49:37 +01:00
|
|
|
};
|
|
|
|
|
2019-09-05 19:41:23 +01:00
|
|
|
# Tests require files not included in the PyPI archive.
|
2016-05-28 13:15:44 +01:00
|
|
|
doCheck = false;
|
2016-04-08 11:49:37 +01:00
|
|
|
|
2018-04-05 21:32:01 +01:00
|
|
|
propagatedBuildInputs = [
|
2016-04-08 11:49:37 +01:00
|
|
|
beautifulsoup4
|
|
|
|
bottle
|
|
|
|
chardet
|
|
|
|
dateutil
|
2021-03-05 15:21:18 +00:00
|
|
|
google-api-python-client
|
2016-04-08 11:49:37 +01:00
|
|
|
lxml
|
2019-09-05 19:41:23 +01:00
|
|
|
oauth2client
|
2016-04-08 11:49:37 +01:00
|
|
|
ply
|
|
|
|
python_magic
|
2018-06-22 11:51:09 +01:00
|
|
|
requests
|
2018-10-30 19:33:42 +00:00
|
|
|
# pytest really is a runtime dependency
|
2021-02-21 13:35:59 +00:00
|
|
|
# https://github.com/beancount/beancount/blob/v2/setup.py#L81-L82
|
2018-10-30 19:33:42 +00:00
|
|
|
pytest
|
2016-04-08 11:49:37 +01:00
|
|
|
];
|
|
|
|
|
2021-01-24 00:29:22 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://furius.ca/beancount/";
|
2016-06-20 11:53:46 +01:00
|
|
|
description = "Double-entry bookkeeping computer language";
|
2016-04-08 11:49:37 +01:00
|
|
|
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;
|
2021-02-21 13:35:59 +00:00
|
|
|
maintainers = with maintainers; [ bhipple ];
|
2016-04-08 11:49:37 +01:00
|
|
|
};
|
|
|
|
}
|