45 lines
1.2 KiB
Nix
45 lines
1.2 KiB
Nix
{ stdenv, fetchhg, pkgs, pythonPackages }:
|
|
|
|
pythonPackages.buildPythonApplication rec {
|
|
version = "2.0b15";
|
|
name = "beancount-${version}";
|
|
namePrefix = "";
|
|
|
|
src = pkgs.fetchurl {
|
|
url = "mirror://pypi/b/beancount/${name}.tar.gz";
|
|
sha256 = "1dvnpgja4v4k5zagfsmdjavlib0z3r9r4z197yvj86szhzs0z86k";
|
|
};
|
|
|
|
buildInputs = with pythonPackages; [ nose ];
|
|
|
|
# Automatic tests cannot be run because it needs to import some local modules for tests.
|
|
doCheck = false;
|
|
checkPhase = ''
|
|
nosetests
|
|
'';
|
|
|
|
propagatedBuildInputs = with pythonPackages; [
|
|
beautifulsoup4
|
|
bottle
|
|
chardet
|
|
dateutil
|
|
google_api_python_client
|
|
lxml
|
|
ply
|
|
python_magic
|
|
];
|
|
|
|
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; [ matthiasbeyer ];
|
|
};
|
|
}
|
|
|