summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMatthieu Coudron <mattator@gmail.com>2020-05-15 17:08:12 +0200
committerGitHub <noreply@github.com>2020-05-15 17:08:12 +0200
commit7319061eef4fc9acafa0f67b6b38b79ef465e556 (patch)
treebb18b883e9360773962e3115d6ce6749f23910b3 /pkgs
parentdf928fafd47a6a6f446322d6e1545a71bb965fc6 (diff)
parentc5629543267254aa0f6489566256d89b4aaa6078 (diff)
downloadnixpkgs-7319061eef4fc9acafa0f67b6b38b79ef465e556.tar
nixpkgs-7319061eef4fc9acafa0f67b6b38b79ef465e556.tar.gz
nixpkgs-7319061eef4fc9acafa0f67b6b38b79ef465e556.tar.bz2
nixpkgs-7319061eef4fc9acafa0f67b6b38b79ef465e556.tar.lz
nixpkgs-7319061eef4fc9acafa0f67b6b38b79ef465e556.tar.xz
nixpkgs-7319061eef4fc9acafa0f67b6b38b79ef465e556.tar.zst
nixpkgs-7319061eef4fc9acafa0f67b6b38b79ef465e556.zip
Merge pull request #87803 from aepsil0n/upgrade-alot-0.9.1
alot: 0.9 → 0.9.1
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/alot/default.nix15
1 files changed, 3 insertions, 12 deletions
diff --git a/pkgs/development/python-modules/alot/default.nix b/pkgs/development/python-modules/alot/default.nix
index d15d1ea0110..a2012132024 100644
--- a/pkgs/development/python-modules/alot/default.nix
+++ b/pkgs/development/python-modules/alot/default.nix
@@ -7,7 +7,7 @@
 
 buildPythonPackage rec {
   pname = "alot";
-  version = "0.9";
+  version = "0.9.1";
   outputs = [ "out" ] ++ lib.optional withManpage "man";
 
   disabled = !isPy3k;
@@ -16,18 +16,9 @@ buildPythonPackage rec {
     owner = "pazz";
     repo = "alot";
     rev = version;
-    sha256 = "sha256-WUwOJcq8JE7YO8sFeZwYikCRhpufO0pL6MKu54ZYsHI=";
+    sha256 = "0s94m17yph1gq9f2svipb3bbwbw1s4j3zf2xkg5h91006v8286r6";
   };
 
-  patches = [
-    # can't compose email if signature is set: https://github.com/pazz/alot/issues/1468
-    (fetchpatch {
-      name = "envelope-body.patch";
-      url = "https://github.com/pazz/alot/commit/28a4296c7f556c251d71d9502681980d46d9fa55.patch";
-      sha256 = "1iwvmjyz4mh1g08vr85ywhah2xarcqg8dazagygk19icgsn45w06";
-    })
-  ];
-
   nativeBuildInputs = lib.optional withManpage sphinx;
 
   propagatedBuildInputs = [
@@ -70,6 +61,6 @@ buildPythonPackage rec {
     description = "Terminal MUA using notmuch mail";
     license = licenses.gpl3;
     platforms = platforms.linux;
-    maintainers = with maintainers; [ geistesk ];
+    maintainers = with maintainers; [ aepsil0n ];
   };
 }