python3Packages.claripy: fix build needing setuptools

This commit is contained in:
Frederik Rietdijk 2022-09-16 10:42:07 +02:00
parent fe4ffc0988
commit ceb78d53dc

View File

@ -1,5 +1,6 @@
{ lib
, buildPythonPackage
, setuptools
, cachetools
, decorator
, fetchFromGitHub
@ -26,6 +27,10 @@ buildPythonPackage rec {
hash = "sha256-3v5te+j3I4yzxoBO8kY8VGLCrWfb1iOz9GHzun1DT0I=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
cachetools
decorator