2018-04-05 22:32:01 +02:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, isPy3k
|
|
|
|
|
, beautifulsoup4, bottle, chardet, dateutil
|
|
|
|
|
, google_api_python_client, lxml, ply, python_magic
|
|
|
|
|
, nose }:
|
2016-04-08 12:49:37 +02:00
|
|
|
|
2018-04-05 22:32:01 +02:00
|
|
|
buildPythonPackage rec {
|
2018-03-29 22:22:28 -07:00
|
|
|
version = "2.0.0";
|
2018-04-05 22:32:01 +02:00
|
|
|
pname = "beancount";
|
2016-04-08 12:49:37 +02:00
|
|
|
|
2018-04-05 22:32:01 +02:00
|
|
|
disabled = !isPy3k;
|
|
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
|
inherit pname version;
|
2018-03-29 22:22:28 -07:00
|
|
|
sha256 = "0wxwf02d3raglwqsxdsgf89fniakv1m19q825w76k5z004g18y42";
|
2016-04-08 12:49:37 +02:00
|
|
|
};
|
|
|
|
|
|
2018-04-05 22:32:01 +02:00
|
|
|
checkInputs = [ nose ];
|
2016-04-08 12:49:37 +02:00
|
|
|
|
2016-05-28 14:15:44 +02:00
|
|
|
# Automatic tests cannot be run because it needs to import some local modules for tests.
|
|
|
|
|
doCheck = false;
|
2016-04-08 12:49:37 +02:00
|
|
|
checkPhase = ''
|
2016-05-28 14:15:44 +02:00
|
|
|
nosetests
|
2016-04-08 12:49:37 +02:00
|
|
|
'';
|
|
|
|
|
|
2018-04-05 22:32:01 +02:00
|
|
|
propagatedBuildInputs = [
|
2016-04-08 12:49:37 +02:00
|
|
|
beautifulsoup4
|
|
|
|
|
bottle
|
|
|
|
|
chardet
|
|
|
|
|
dateutil
|
|
|
|
|
google_api_python_client
|
|
|
|
|
lxml
|
|
|
|
|
ply
|
|
|
|
|
python_magic
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
|
homepage = http://furius.ca/beancount/;
|
2016-06-20 12:53:46 +02:00
|
|
|
description = "Double-entry bookkeeping computer language";
|
2016-04-08 12:49:37 +02: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 10:57:19 +02:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ ];
|
2016-04-08 12:49:37 +02:00
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|