python3Packages.openapi-spec-validator: add missing dependency on openapi-schema-validator
This new dependency was missed on our update to 0.3.0.
This commit is contained in:
parent
ac9adabaf5
commit
a5a5eea480
|
@ -1,5 +1,5 @@
|
||||||
{ lib, buildPythonPackage, isPy27, fetchPypi
|
{ lib, buildPythonPackage, isPy27, fetchPypi
|
||||||
, jsonschema, pyyaml, six, pathlib
|
, jsonschema, openapi-schema-validator, pyyaml, six, pathlib
|
||||||
, mock, pytest, pytestcov, pytest-flake8, tox, setuptools }:
|
, mock, pytest, pytestcov, pytest-flake8, tox, setuptools }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
|
@ -11,7 +11,7 @@ buildPythonPackage rec {
|
||||||
sha256 = "53ba3d884e98ff2062d5ada025aa590541dcd665b8f81067dc82dd61c0923759";
|
sha256 = "53ba3d884e98ff2062d5ada025aa590541dcd665b8f81067dc82dd61c0923759";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ jsonschema pyyaml six setuptools ]
|
propagatedBuildInputs = [ jsonschema openapi-schema-validator pyyaml six setuptools ]
|
||||||
++ (lib.optionals (isPy27) [ pathlib ]);
|
++ (lib.optionals (isPy27) [ pathlib ]);
|
||||||
|
|
||||||
checkInputs = [ mock pytest pytestcov pytest-flake8 tox ];
|
checkInputs = [ mock pytest pytestcov pytest-flake8 tox ];
|
||||||
|
|
Loading…
Reference in New Issue