package.nix (647B)
1 { 2 lib, 3 python3Packages, 4 fetchFromGitHub, 5 }: 6 7 python3Packages.buildPythonApplication (finalAttrs: { 8 pname = "arcgis2geojson"; 9 version = "3.1.1"; 10 pyproject = true; 11 12 src = fetchFromGitHub { 13 owner = "chris48s"; 14 repo = "arcgis2geojson"; 15 tag = finalAttrs.version; 16 hash = "sha256-q02LBxncxfbQM3bVDYWBOw8EuysyFv9lmJ0VBtq+vl0="; 17 }; 18 19 build-system = with python3Packages; [ poetry-core ]; 20 21 meta = { 22 description = "A Python library for converting ArcGIS JSON to GeoJSON"; 23 homepage = "https://github.com/chris48s/arcgis2geojson"; 24 license = lib.licenses.mit; 25 maintainers = [ lib.maintainers.sikmir ]; 26 }; 27 })
