about summary refs log tree commit diff
path: root/pkgs/applications/office
diff options
context:
space:
mode:
authorRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-04-05 22:32:01 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2018-04-08 11:36:05 +0200
commit63193b19b364ba33b7c63959ce4729c3517bb2f9 (patch)
treedc578b7d450a05bedc00fc090c968e2243bacb89 /pkgs/applications/office
parent762378a5d7da9281610e9f079f7efb880c5157a0 (diff)
downloadnixlib-63193b19b364ba33b7c63959ce4729c3517bb2f9.tar
nixlib-63193b19b364ba33b7c63959ce4729c3517bb2f9.tar.gz
nixlib-63193b19b364ba33b7c63959ce4729c3517bb2f9.tar.bz2
nixlib-63193b19b364ba33b7c63959ce4729c3517bb2f9.tar.lz
nixlib-63193b19b364ba33b7c63959ce4729c3517bb2f9.tar.xz
nixlib-63193b19b364ba33b7c63959ce4729c3517bb2f9.tar.zst
nixlib-63193b19b364ba33b7c63959ce4729c3517bb2f9.zip
beancount: move to pythonPackages
Diffstat (limited to 'pkgs/applications/office')
-rw-r--r--pkgs/applications/office/beancount/default.nix44
1 files changed, 0 insertions, 44 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; [ ];
-  };
-}
-