15 buildPythonPackage rec {
20 disabled = pythonOlder "3.10";
22 src = fetchFromGitHub {
25 rev = "refs/tags/${version}";
26 hash = "sha256-q2O9FNBszNWfL1ekcohSd1RbdLFu8c+zxi+UFeQ7/mk=";
30 substituteInPlace tox.ini \
31 --replace-fail " --doctest-modules --doctest-glob 'tests/**/*.txt'" ""
34 build-system = [ setuptools ];
48 pythonImportsCheck = [ "owslib" ];
51 # _pytest.pathlib.ImportPathMismatchError: ('owslib.swe.sensor.sml', '/build/source/build/...
52 export PY_IGNORE_IMPORTMISMATCH=1
56 # Disable tests which require network access
61 # Tests requires network access
62 "tests/test_ogcapi_connectedsystems_osh.py"
66 description = "Client for Open Geospatial Consortium web service interface standards";
67 homepage = "https://www.osgeo.org/projects/owslib/";
68 changelog = "https://github.com/geopython/OWSLib/releases/tag/${version}";
69 license = licenses.bsd3;
70 maintainers = teams.geospatial.members;