11 buildPythonPackage rec {
12 pname = "kml2geojson";
16 disabled = pythonOlder "3.8";
18 src = fetchFromGitHub {
22 hash = "sha256-iJEcXpvy+Y3MkxAF2Q1Tkcx8GxUVjeVzv6gl134zdiI=";
25 nativeBuildInputs = [ poetry-core ];
27 propagatedBuildInputs = [ click ];
29 nativeCheckInputs = [ pytestCheckHook ];
31 pythonImportsCheck = [ "kml2geojson" ];
34 description = "Library to convert KML to GeoJSON";
36 homepage = "https://github.com/mrcagney/kml2geojson";
37 license = licenses.mit;
38 maintainers = with maintainers; [ fab ];