diff --git a/pkgs/default.nix b/pkgs/default.nix
index 778c758c4d3e30e1714211df4cb7c8d00a050864..24fff11672c9b4915322e6a0e813e8b4af4961d7 100644
--- a/pkgs/default.nix
+++ b/pkgs/default.nix
@@ -439,6 +439,7 @@
### OSM
cykhash = callPackage ./osm/cykhash { };
imposm = callPackage ./osm/imposm { };
map-machine = callPackage ./osm/map-machine { };
map-stylizer = callPackage ./osm/map-stylizer { };
diff --git a/pkgs/osm/gcgn-converter/default.nix b/pkgs/osm/gcgn-converter/default.nix
new file mode 100644
index 0000000000000000000000000000000000000000..0038dd774e33cf929d10fdaf4b6f2d32ba9f9fa4
--- /dev/null
+++ b/pkgs/osm/gcgn-converter/default.nix
@@ -0,0 +1,39 @@
+{ lib, stdenv, fetchFromGitHub, python3Packages }:
+python3Packages.buildPythonApplication rec {
pythonEnv = python3Packages.python.withPackages (p: with p; [
camelot pypdf geojson beautifulsoup4 tqdm
]);
site_packages=$out/lib/${python3Packages.python.libPrefix}/site-packages
mkdir -p $site_packages
cp *.py $site_packages
makeWrapper ${pythonEnv.interpreter} $out/bin/gcgn_convert \
--add-flags "$site_packages/gcgn_convert.py"
+}
application/octet-stream
This content has been proxied by September (3851b).