mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 07:34:11 +00:00
fe2aa695b5
Missing dependency made the build fail.
73 lines
1.5 KiB
Nix
73 lines
1.5 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, lxml
|
|
, pyproj
|
|
, pytestCheckHook
|
|
, python-dateutil
|
|
, pythonOlder
|
|
, pytz
|
|
, pyyaml
|
|
, requests
|
|
, python
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "owslib";
|
|
version = "0.28.1";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "geopython";
|
|
repo = "OWSLib";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-qiH6teCJ/4oftSRyBTtiJdlmJn02VwacU72dWi6OXdc=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace tox.ini \
|
|
--replace " --doctest-modules --doctest-glob 'tests/**/*.txt' --cov-report term-missing --cov owslib" ""
|
|
'';
|
|
|
|
propagatedBuildInputs = [
|
|
lxml
|
|
pyproj
|
|
python-dateutil
|
|
pytz
|
|
pyyaml
|
|
requests
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"owslib"
|
|
];
|
|
|
|
preCheck = ''
|
|
# _pytest.pathlib.ImportPathMismatchError: ('owslib.swe.sensor.sml', '/build/source/build/...
|
|
export PY_IGNORE_IMPORTMISMATCH=1
|
|
'';
|
|
|
|
disabledTests = [
|
|
# Tests require network access
|
|
"test_ows_interfaces_wcs"
|
|
"test_wfs_110_remotemd"
|
|
"test_wfs_200_remotemd"
|
|
"test_wms_130_remotemd"
|
|
"test_wmts_example_informatievlaanderen"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Client for Open Geospatial Consortium web service interface standards";
|
|
homepage = "https://www.osgeo.org/projects/owslib/";
|
|
changelog = "https://github.com/geopython/OWSLib/blob/${version}/CHANGES.rst";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|