3
0
Fork 0
forked from mirrors/nixpkgs

python3.pkgs.importlib-metadata: fix cross

I'm a bit confused why this dependency is required only when cross
compiling.
This commit is contained in:
Alyssa Ross 2022-03-22 10:29:27 +00:00 committed by Jonathan Ringer
parent 9d35f2cd19
commit 3c7b77e638

View file

@ -2,6 +2,7 @@
, buildPythonPackage
, fetchPypi
, pythonOlder
, setuptools
, setuptools-scm
, typing-extensions
, toml
@ -22,6 +23,7 @@ buildPythonPackage rec {
};
nativeBuildInputs = [
setuptools # otherwise cross build fails
setuptools-scm
];