python3Packages.archinfo: add missing setuptools dependency

main
Frederik Rietdijk 2 years ago
parent 53614025a9
commit 40d2962259
  1. 5
      pkgs/development/python-modules/archinfo/default.nix

@ -3,6 +3,7 @@
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
, setuptools
}:
buildPythonPackage rec {
@ -19,6 +20,10 @@ buildPythonPackage rec {
hash = "sha256-K9EAyCvwgWhiZ+rkPKPGBr3lWYIIRCf0FAzPjIjrcU8=";
};
nativeBuildInputs = [
setuptools
];
checkInputs = [
pytestCheckHook
];

Loading…
Cancel
Save