pythonPackages.gpgme: inherit python

else building via e.g. `python3Packages.gpgme` produces the wrong result.
This commit is contained in:
Jan Malakhovski 2018-11-17 10:16:39 +00:00
parent e426758d0e
commit ac09051cf5

View file

@ -2418,7 +2418,10 @@ in {
google_cloud_speech = callPackage ../development/python-modules/google_cloud_speech { };
gpgme = toPythonModule (pkgs.gpgme.override { pythonSupport=true; });
gpgme = toPythonModule (pkgs.gpgme.override {
pythonSupport = true;
inherit (self) python;
});
gphoto2 = callPackage ../development/python-modules/gphoto2 {
inherit (pkgs) pkgconfig;