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-06-22 11:51:09 +01:00
|
|
|
, nose, requests }:
|
2016-04-08 11:49:37 +01:00
|
|
|
|
2018-04-05 21:32:01 +01:00
|
|
|
buildPythonPackage rec {
|
2018-10-06 11:55:42 +01:00
|
|
|
version = "2.1.3";
|
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;
|
2018-10-06 11:55:42 +01:00
|
|
|
sha256 = "4b7b0d3633c82ca88d3cb3d31ad2fd2e45a42401cfa94eaa1cb938ffece34f22";
|
2016-04-08 11:49:37 +01:00
|
|
|
};
|
|
|
|
|
2018-04-05 21:32:01 +01:00
|
|
|
checkInputs = [ nose ];
|
2016-04-08 11:49:37 +01:00
|
|
|
|
2016-05-28 13:15:44 +01:00
|
|
|
# Automatic tests cannot be run because it needs to import some local modules for tests.
|
|
|
|
doCheck = false;
|
2016-04-08 11:49:37 +01:00
|
|
|
checkPhase = ''
|
2016-05-28 13:15:44 +01:00
|
|
|
nosetests
|
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
|
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
|
|
|
};
|
|
|
|
}
|
|
|
|
|