python3Packages.exdown: add setuptools to nativeBuildInputs
This commit is contained in:
parent
c9b3f8501c
commit
d8d7fe9319
1 changed files with 5 additions and 0 deletions
|
@ -3,6 +3,7 @@
|
|||
, isPy27
|
||||
, fetchPypi
|
||||
, pythonOlder
|
||||
, setuptools
|
||||
, importlib-metadata
|
||||
, pytestCheckHook
|
||||
}:
|
||||
|
@ -19,6 +20,10 @@ buildPythonPackage rec {
|
|||
sha256 = "sha256-r0SCigkUpOiba4MDf80+dLjOjjruVNILh/raWfvjXA0=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
setuptools
|
||||
];
|
||||
|
||||
propagatedBuildInputs = lib.optionals (pythonOlder "3.8") [ importlib-metadata ];
|
||||
|
||||
checkInputs = [
|
||||
|
|
Loading…
Reference in a new issue