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"
main
Matías Lang 2 years ago
parent 6766fb6503
commit d3be011090
  1. 7
      pkgs/development/python-modules/faraday-agent-parameters-types/default.nix

@ -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";

Loading…
Cancel
Save