about summary refs log tree commit diff
path: root/pkgs/development/python-modules/notmuch
diff options
context:
space:
mode:
authorMatthieu Coudron <mcoudron@hotmail.com>2021-08-06 00:44:30 +0200
committerJonathan Ringer <jonringer@users.noreply.github.com>2021-08-05 19:29:27 -0700
commit84c07d71a5e6e5878ab7158c170c625a0ef883a9 (patch)
treeb37470410e57bd4b9ea3f6a6d220ff92c40bbbb5 /pkgs/development/python-modules/notmuch
parentfd11119c73285aa4783a72321d69845d0c4de264 (diff)
python3Packages.notmuch2: fix build
folder name became incorrect
Diffstat (limited to 'pkgs/development/python-modules/notmuch')
-rw-r--r--pkgs/development/python-modules/notmuch/2.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/notmuch/2.nix b/pkgs/development/python-modules/notmuch/2.nix
index bde039836ffae..bd195b52d44e1 100644
--- a/pkgs/development/python-modules/notmuch/2.nix
+++ b/pkgs/development/python-modules/notmuch/2.nix
@@ -10,7 +10,7 @@ buildPythonPackage {
   pname = "notmuch2";
   inherit (notmuch) version src;
 
-  sourceRoot = "${notmuch.src.name}/bindings/python-cffi";
+  sourceRoot = "notmuch-${notmuch.version}/bindings/python-cffi";
 
   buildInputs = [ python notmuch cffi ];