Merge pull request #80129 from disassembler/openapi-spec-validator

python3Packages.openapi-spec-validator: add setuptools
This commit is contained in:
worldofpeace 2020-02-14 12:55:20 -05:00 committed by GitHub
commit 62a7f80d50
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,6 @@
{ lib, buildPythonPackage, isPy27, fetchPypi
, jsonschema, pyyaml, six, pathlib
, mock, pytest, pytestcov, pytest-flake8, tox }:
, mock, pytest, pytestcov, pytest-flake8, tox, setuptools }:
buildPythonPackage rec {
pname = "openapi-spec-validator";
@ -11,7 +11,7 @@ buildPythonPackage rec {
sha256 = "1kav0jlgdpgwx4am09ja7cr8s1g8h8a7j8mcfy1cfjr8fficg2g4";
};
propagatedBuildInputs = [ jsonschema pyyaml six ]
propagatedBuildInputs = [ jsonschema pyyaml six setuptools ]
++ (lib.optionals (isPy27) [ pathlib ]);
checkInputs = [ mock pytest pytestcov pytest-flake8 tox ];