Merge pull request #170723 from cript0nauta/faraday-agent-parameters-types

python3Packages.faraday-agent-parameters-types: add mising dependency
This commit is contained in:
Fabian Affolter
2022-04-28 08:40:09 +02:00
committed by GitHub
@@ -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";