python3Packages.faraday-agent-parameters-types: add mising dependency

Otherwise, importing "faraday_agent_parameters_types.utils" would fail
because it couldn't find the module "packaging"
This commit is contained in:
Matías Lang 2022-04-28 00:27:02 -03:00
parent 6766fb6503
commit d3be011090

View file

@ -2,6 +2,7 @@
, buildPythonPackage
, fetchPypi
, marshmallow
, packaging
, pytestCheckHook
}:
@ -17,6 +18,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [
marshmallow
packaging
];
checkInputs = [
@ -28,7 +30,10 @@ buildPythonPackage rec {
--replace '"pytest-runner",' ""
'';
pythonImportsCheck = [ "faraday_agent_parameters_types" ];
pythonImportsCheck = [
"faraday_agent_parameters_types"
"faraday_agent_parameters_types.utils"
];
meta = with lib; {
description = "Collection of Faraday agent parameters types";