evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / mercantile / default.nix
blob7fd6e040a2af816a7a183542f94bc1ce4b452cc9
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   click,
6   pytestCheckHook,
7   hypothesis,
8 }:
10 buildPythonPackage rec {
11   pname = "mercantile";
12   version = "1.2.1";
13   format = "setuptools";
15   src = fetchFromGitHub {
16     owner = "mapbox";
17     repo = pname;
18     rev = version;
19     hash = "sha256-DiDXO2XnD3We6NhP81z7aIHzHrHDi/nkqy98OT9986w=";
20   };
22   propagatedBuildInputs = [ click ];
24   nativeCheckInputs = [
25     pytestCheckHook
26     hypothesis
27   ];
29   meta = with lib; {
30     description = "Spherical mercator tile and coordinate utilities";
31     mainProgram = "mercantile";
32     homepage = "https://github.com/mapbox/mercantile";
33     license = licenses.bsd3;
34     maintainers = with maintainers; [ sikmir ];
35   };