forked from mirrors/nixpkgs
python3.pkgs.pycairo: fix cross
This commit is contained in:
parent
38b9e4131a
commit
c18332aed3
|
@ -40,7 +40,10 @@ buildPythonPackage rec {
|
|||
];
|
||||
|
||||
mesonFlags = [
|
||||
"-Dpython=${python.interpreter}"
|
||||
# This is only used for figuring out what version of Python is in
|
||||
# use, and related stuff like figuring out what the install prefix
|
||||
# should be, but it does need to be able to execute Python code.
|
||||
"-Dpython=${python.pythonForBuild.interpreter}"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
|
|
|
@ -6182,7 +6182,7 @@ in {
|
|||
pybullet = callPackage ../development/python-modules/pybullet { };
|
||||
|
||||
pycairo = callPackage ../development/python-modules/pycairo {
|
||||
inherit (pkgs) meson;
|
||||
inherit (pkgs.buildPackages) meson;
|
||||
};
|
||||
|
||||
pycallgraph = callPackage ../development/python-modules/pycallgraph { };
|
||||
|
|
Loading…
Reference in a new issue