130c76b320
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-beancount/versions
48 lines
1.2 KiB
Nix
48 lines
1.2 KiB
Nix
{ stdenv, buildPythonPackage, fetchPypi, isPy3k
|
|
, beautifulsoup4, bottle, chardet, dateutil
|
|
, google_api_python_client, lxml, ply, python_magic
|
|
, pytest, requests }:
|
|
|
|
buildPythonPackage rec {
|
|
version = "2.2.1";
|
|
pname = "beancount";
|
|
|
|
disabled = !isPy3k;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0xrgmqv0wsc0makm5i6jwng99yp3rvm30v2xqmcah60fgjymkjzb";
|
|
};
|
|
|
|
# No tests in archive
|
|
doCheck = false;
|
|
|
|
propagatedBuildInputs = [
|
|
beautifulsoup4
|
|
bottle
|
|
chardet
|
|
dateutil
|
|
google_api_python_client
|
|
lxml
|
|
ply
|
|
python_magic
|
|
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; [ ];
|
|
};
|
|
}
|
|
|