My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/mercantile/default.nix

28 lines
633 B

{ lib, buildPythonPackage, fetchFromGitHub
, click
, pytestCheckHook
, hypothesis
}:
buildPythonPackage rec {
pname = "mercantile";
version = "1.2.1";
src = fetchFromGitHub {
owner = "mapbox";
repo = pname;
rev = version;
sha256 = "sha256-DiDXO2XnD3We6NhP81z7aIHzHrHDi/nkqy98OT9986w=";
};
propagatedBuildInputs = [ click ];
checkInputs = [ pytestCheckHook hypothesis ];
meta = with lib; {
description = "Spherical mercator tile and coordinate utilities";
homepage = "https://github.com/mapbox/mercantile";
license = licenses.bsd3;
maintainers = with maintainers; [ sikmir ];
};
}