python3Packages.bitlist: add setuptools to nativeBuildInputs

This commit is contained in:
Martin Weinelt 2022-09-16 17:41:01 +02:00 committed by Frederik Rietdijk
parent a30bb4c64a
commit 074c316654

View file

@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchPypi
, setuptools
, nose
, parts
, pytestCheckHook
@ -19,6 +20,10 @@ buildPythonPackage rec {
hash = "sha256-rpXQKkV2RUuYza+gfpGEH3kFJ+hjuNGKV2i46eXQUUI=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
parts
];