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