nixpkgs/pkgs/development/python-modules/beancount/default.nix

49 lines
1.3 KiB
Nix
Raw Normal View History

2018-04-05 20:32:01 +00:00
{ stdenv, buildPythonPackage, fetchPypi, isPy3k
, beautifulsoup4, bottle, chardet, dateutil
2019-09-05 18:41:23 +00:00
, google_api_python_client, lxml, oauth2client
, ply, python_magic, pytest, requests }:
2018-04-05 20:32:01 +00:00
buildPythonPackage rec {
2020-10-29 19:29:35 +00:00
version = "2.3.3";
2018-04-05 20:32:01 +00:00
pname = "beancount";
2018-04-05 20:32:01 +00:00
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
2020-10-29 19:29:35 +00:00
sha256 = "0767ap2n9vk9dz40njndfhaprajr75fvzx7igbd1szc6x8wri8nr";
};
2019-09-05 18:41:23 +00:00
# Tests require files not included in the PyPI archive.
doCheck = false;
2018-04-05 20:32:01 +00:00
propagatedBuildInputs = [
beautifulsoup4
bottle
chardet
dateutil
google_api_python_client
lxml
2019-09-05 18:41:23 +00:00
oauth2client
ply
python_magic
2018-06-22 10:51:09 +00:00
requests
# pytest really is a runtime dependency
# https://bitbucket.org/blais/beancount/commits/554e13057551951e113835196770847c788dd592
pytest
];
meta = {
homepage = "http://furius.ca/beancount/";
description = "Double-entry bookkeeping computer language";
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;
maintainers = with stdenv.lib.maintainers; [ ];
};
}