/usr/lib/python2.7/dist-packages/pywps/dependencies.py is in python-pywps 4.0.0-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 | ##################################################################
# Copyright 2016 OSGeo Foundation, #
# represented by PyWPS Project Steering Committee, #
# licensed under MIT, Please consult LICENSE.txt for details #
##################################################################
try:
from osgeo import gdal, ogr
except ImportError as err:
from pywps.exceptions import NoApplicableCode
raise NoApplicableCode('Complex validation requires GDAL/OGR support')
|