Unverified Commit ab6d993f authored by Ivan Mincik's avatar Ivan Mincik Committed by GitHub
Browse files

Merge pull request #314877 from sikmir/xyzservices

python3Packages.xyzservices: adopted by geospatial team
parents b5995681 e97fd87d
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@
buildPythonPackage rec {
  pname = "xyzservices";
  version = "2024.4.0";
  format = "pyproject";
  pyproject = true;

  src = fetchPypi {
    inherit pname version;
@@ -24,9 +24,9 @@ buildPythonPackage rec {
    setuptools-scm
  ];

  disabledTests = [
  pytestFlagsArray = [
    # requires network connections
    "test_free_providers"
    "-m 'not request'"
  ];

  pythonImportsCheck = [ "xyzservices.providers" ];
@@ -37,11 +37,11 @@ buildPythonPackage rec {
    requests
  ];

  meta = with lib; {
  meta = {
    changelog = "https://github.com/geopandas/xyzservices/releases/tag/${version}";
    description = "Source of XYZ tiles providers";
    homepage = "https://github.com/geopandas/xyzservices";
    license = licenses.bsd3;
    maintainers = with maintainers; [ ];
    license = lib.licenses.bsd3;
    maintainers = lib.teams.geospatial.members;
  };
}