python3Packages.cfn-lint: fix build

This commit is contained in:
Jonathan Ringer 2019-12-21 01:52:28 -08:00 committed by Frederik Rietdijk
parent c9cafbf56e
commit 68f4f8804d

View file

@ -1,10 +1,13 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, pythonOlder
, pyyaml , pyyaml
, six , six
, requests , requests
, aws-sam-translator , aws-sam-translator
, importlib-metadata
, importlib-resources
, jsonpatch , jsonpatch
, jsonschema , jsonschema
, pathlib2 , pathlib2
@ -29,7 +32,7 @@ buildPythonPackage rec {
jsonschema jsonschema
pathlib2 pathlib2
setuptools setuptools
]; ] ++ lib.optionals (pythonOlder "3.8") [ importlib-metadata importlib-resources ];
# No tests included in archive # No tests included in archive
doCheck = false; doCheck = false;