2018-04-05 21:32:01 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, isPy3k
|
|
|
|
, beautifulsoup4, bottle, chardet, dateutil
|
|
|
|
, google_api_python_client, lxml, ply, python_magic
|
2018-10-30 19:33:42 +00:00
|
|
|
, pytest, requests }:
|
2016-04-08 11:49:37 +01:00
|
|
|
|
2018-04-05 21:32:01 +01:00
|
|
|
buildPythonPackage rec {
|
2019-02-06 14:39:23 +00:00
|
|
|
version = "2.2.1";
|
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;
|
2019-02-06 14:39:23 +00:00
|
|
|
sha256 = "0xrgmqv0wsc0makm5i6jwng99yp3rvm30v2xqmcah60fgjymkjzb";
|
2016-04-08 11:49:37 +01:00
|
|
|
};
|
|
|
|
|
2018-10-30 19:33:42 +00:00
|
|
|
# No tests in 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
|
|
|
|
google_api_python_client
|
|
|
|
lxml
|
|
|
|
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
|
|
|
|
# https://bitbucket.org/blais/beancount/commits/554e13057551951e113835196770847c788dd592
|
|
|
|
pytest
|
2016-04-08 11:49:37 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
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.
|
|
|
|
'';
|
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2018-04-06 09:57:19 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ ];
|
2016-04-08 11:49:37 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|