python3Packages.xyzservices: init at 2022.9.0

This commit is contained in:
Martin Weinelt 2023-01-02 23:04:06 +01:00
parent d936589982
commit eca61ccf9a
2 changed files with 39 additions and 0 deletions

View File

@ -0,0 +1,37 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, fetchPypi
, mercantile
, pytestCheckHook
, requests
}:
buildPythonPackage rec {
pname = "xyzservices";
version = "2022.9.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-VWUZYXCLmhSEmXizOd92AIyIbfeoMmMIpVSbrlUWJgw=";
};
pythonImportsCheck = [
"xyzservices.providers"
];
checkInputs = [
mercantile
pytestCheckHook
requests
];
meta = with lib; {
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; [ ];
};
}

View File

@ -12263,6 +12263,8 @@ self: super: with self; {
xxhash = callPackage ../development/python-modules/xxhash { };
xyzservices = callPackage ../development/python-modules/xyzservices { };
yabadaba = callPackage ../development/python-modules/yabadaba { };
yahooweather = callPackage ../development/python-modules/yahooweather { };