summary refs log blame commit diff
path: root/pkgs/development/python-modules/notmuch/default.nix
blob: 5d5a85b6fdd8a5f582701e9a0d0659f4b8444c4c (plain) (tree)
1
2
3
4
5
6
7
8
9

                    
         


        
                    
                                      
 
                                        
 
                                   

                
                                                                    






                                                    
                                        


    
{ stdenv
, buildPythonPackage
, notmuch
, python
}:

buildPythonPackage {
  inherit (notmuch) pname version src;

  sourceRoot = notmuch.pythonSourceRoot;

  buildInputs = [ python notmuch ];

  postPatch = ''
    sed -i -e '/CDLL/s@"libnotmuch\.@"${notmuch}/lib/libnotmuch.@' \
      notmuch/globals.py
  '';

  meta = with stdenv.lib; {
    description = "A Python wrapper around notmuch";
    homepage = https://notmuchmail.org/;
    license = licenses.gpl3;
    maintainers = with maintainers; [ ];
  };

}