python3Packages.packaging: change build system from flit to setuptools

With 20.8 upstream reverted buildsystem from flit back to setuptools as
this would make it easier for some distro's.
This commit is contained in:
Frederik Rietdijk 2021-03-13 10:13:54 +01:00
parent 60a10e0989
commit 8149718529

View file

@ -5,7 +5,7 @@
, six
, pytestCheckHook
, pretend
, flit-core
, setuptools
}:
buildPythonPackage rec {
@ -19,7 +19,7 @@ buildPythonPackage rec {
};
nativeBuildInputs = [
flit-core
setuptools
];
propagatedBuildInputs = [ pyparsing six ];