about summary refs log tree commit diff
path: root/pkgs/applications/office
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/office')
-rw-r--r--pkgs/applications/office/beancount/default.nix44
-rw-r--r--pkgs/applications/office/fava/default.nix4
2 files changed, 2 insertions, 46 deletions
diff --git a/pkgs/applications/office/beancount/default.nix b/pkgs/applications/office/beancount/default.nix
deleted file mode 100644
index d500be8a1f22..000000000000
--- a/pkgs/applications/office/beancount/default.nix
+++ /dev/null
@@ -1,44 +0,0 @@
-{ stdenv, fetchhg, pkgs, pythonPackages }:
-
-pythonPackages.buildPythonApplication rec {
-  version = "2.0.0";
-  name = "beancount-${version}";
-  namePrefix = "";
-
-  src = pkgs.fetchurl {
-    url = "mirror://pypi/b/beancount/${name}.tar.gz";
-    sha256 = "0wxwf02d3raglwqsxdsgf89fniakv1m19q825w76k5z004g18y42";
-  };
-
-  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; [ ];
-  };
-}
-
diff --git a/pkgs/applications/office/fava/default.nix b/pkgs/applications/office/fava/default.nix
index 9040e5cb8857..9c8f39d52f1d 100644
--- a/pkgs/applications/office/fava/default.nix
+++ b/pkgs/applications/office/fava/default.nix
@@ -5,12 +5,12 @@ let
 in
 buildPythonApplication rec {
   pname = "fava";
-  version = "1.6";
+  version = "1.7";
   name = "${pname}-${version}";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "0iif4imx76ra0lsisksrq5vf54wbivnrb3xqz6mkx9lik3pp5sbx";
+    sha256 = "c4eba4203bddaa7bc9d54971d2afeeebab0bc80ce89be1375a41a07c4e82b62f";
   };
 
   doCheck = false;