3 buildPythonApplication,
9 buildPythonApplication rec {
14 src = fetchFromGitHub {
17 rev = "refs/tags/v${version}";
18 hash = "sha256-vxAF49NluEI/cZMUv1dlQBpUh1jfZ6KUVkYAmFAWphk=";
21 patches = [ ./migrate_to_pytest.patch ];
23 build-system = [ setuptools ];
25 nativeCheckInputs = [ pytestCheckHook ];
26 pytestFlagsArray = [ "test/test.py" ];
29 description = "Importer and exporter for MBTiles";
30 mainProgram = "mb-util";
31 homepage = "https://github.com/mapbox/mbutil";
32 license = lib.licenses.bsd3;
33 platforms = lib.platforms.unix;
34 maintainers = with lib.maintainers; [ sikmir ];