depot/third_party/nixpkgs/pkgs/development/python-modules/xyzservices/default.nix
Default email 0d9fc34957 Project import generated by Copybara.
GitOrigin-RevId: 5ed481943351e9fd354aeb557679624224de38d5
2023-01-20 11:41:00 +01:00

37 lines
745 B
Nix

{ 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; [ ];
};
}