From c6a61092e78873ff0300e1660838194693a53911 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 14 May 2016 04:29:22 +0300 Subject: [PATCH] pythonPackages.sip: let python.buildEnv detect it --- pkgs/development/python-modules/sip/4.16.nix | 2 ++ pkgs/development/python-modules/sip/default.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/sip/4.16.nix b/pkgs/development/python-modules/sip/4.16.nix index adb6c7ef80d6..2861816885f3 100644 --- a/pkgs/development/python-modules/sip/4.16.nix +++ b/pkgs/development/python-modules/sip/4.16.nix @@ -16,6 +16,8 @@ if isPyPy then throw "sip not supported for interpreter ${python.executable}" el buildInputs = [ python ]; + passthru.pythonPath = []; + meta = with stdenv.lib; { description = "Creates C++ bindings for Python modules"; homepage = "http://www.riverbankcomputing.co.uk/"; diff --git a/pkgs/development/python-modules/sip/default.nix b/pkgs/development/python-modules/sip/default.nix index cf3a0149844b..6c455b3bb1bd 100644 --- a/pkgs/development/python-modules/sip/default.nix +++ b/pkgs/development/python-modules/sip/default.nix @@ -19,6 +19,8 @@ if isPyPy then throw "sip not supported for interpreter ${python.executable}" el buildInputs = [ python ]; + passthru.pythonPath = []; + meta = with stdenv.lib; { description = "Creates C++ bindings for Python modules"; homepage = "http://www.riverbankcomputing.co.uk/";