summary refs log tree commit diff
path: root/pkgs/applications/networking
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2018-01-11 20:54:20 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2018-01-20 13:48:24 +0100
commit5f03d6bf4d19714fec880729b946110799dd39db (patch)
treea6a38b87f470b404046d0af7d1f29b508617095b /pkgs/applications/networking
parent567cf47d49a97a19024d848bb1c55816b2cdd382 (diff)
downloadnixlib-5f03d6bf4d19714fec880729b946110799dd39db.tar
nixlib-5f03d6bf4d19714fec880729b946110799dd39db.tar.gz
nixlib-5f03d6bf4d19714fec880729b946110799dd39db.tar.bz2
nixlib-5f03d6bf4d19714fec880729b946110799dd39db.tar.lz
nixlib-5f03d6bf4d19714fec880729b946110799dd39db.tar.xz
nixlib-5f03d6bf4d19714fec880729b946110799dd39db.tar.zst
nixlib-5f03d6bf4d19714fec880729b946110799dd39db.zip
afew: rewrite expression
it's an application, not a python module

Also, remove name attribute.
Build with python 3 by default.

afew: make setuptools_scm a buildInput

afew: don't set SETUPTOOLS_SCM_PRETEND_VERSION anymore

we fetch from pypi, with version info properly set, so this shouldn't be
an issue.

afew: set license

afew: add notmuch binary to PATH

it seems afew calls "notmuch new" in MailMover.py

afew: don't set LD_LIBRARY_PATH

the library is already hardcoded pythonPackages.notmuch's globals.py
Diffstat (limited to 'pkgs/applications/networking')
-rw-r--r--pkgs/applications/networking/mailreaders/afew/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/applications/networking/mailreaders/afew/default.nix b/pkgs/applications/networking/mailreaders/afew/default.nix
new file mode 100644
index 000000000000..7fbdf0f6a64c
--- /dev/null
+++ b/pkgs/applications/networking/mailreaders/afew/default.nix
@@ -0,0 +1,28 @@
+{ stdenv, pythonPackages, notmuch }:
+
+pythonPackages.buildPythonApplication rec {
+  pname = "afew";
+  version = "1.2.0";
+
+  src = pythonPackages.fetchPypi {
+    inherit pname version;
+    sha256 = "121w7bd53xyibllxxbfykjj76n81kn1vgjqd22izyh67y8qyyk5r";
+  };
+
+  buildInputs = with pythonPackages; [ setuptools_scm ];
+
+  propagatedBuildInputs = with pythonPackages; [
+    pythonPackages.notmuch chardet
+  ] ++ stdenv.lib.optional (!pythonPackages.isPy3k) subprocess32;
+
+  makeWrapperArgs = [
+    ''--prefix PATH ':' "${notmuch}/bin"''
+  ];
+
+  meta = with stdenv.lib; {
+    homepage = https://github.com/afewmail/afew;
+    description = "An initial tagging script for notmuch mail";
+    license = licenses.isc;
+    maintainers = with maintainers; [ garbas andir flokli ];
+  };
+}