python3Packages.pycountry: propagate setuptools

This commit is contained in:
Martin Weinelt 2022-09-17 15:42:56 +02:00 committed by Sandro Jäckel
parent 2428c85be9
commit ec82b18808
No known key found for this signature in database
GPG key ID: B1763F8651144063

View file

@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchPypi
, setuptools
, pytestCheckHook
}:
@ -13,6 +14,10 @@ buildPythonPackage rec {
sha256 = "sha256-shY6JGxYWJTYCPGHg+GRN8twoMGPs2dI3AH8bxCcFkY=";
};
propagatedBuildInputs = [
setuptools
];
checkInputs = [
pytestCheckHook
];