feeds: add asian hornet sightings in Bern

This commit is contained in:
2026-06-16 21:48:57 +02:00
parent 682ae010da
commit cbf4fda187
219 changed files with 1996 additions and 17 deletions
+30 -6
View File
@@ -23,12 +23,24 @@
sparqlwrapper
feedgen
tinydb
pandas
geopandas
pyarrow
fiona
pyproj
shapely
numpy
matplotlib
pyogrio
pycurl
beautifulsoup4
];
# you will need to point to your local git clone
postInstall = ''
wrapProgram $out/bin/resspublica \
--set RESSPUBLICA_CACHE "/home/tomasr/devel/ReSSPublica/.cache"
--set RESSPUBLICA_CACHE "/home/tomasr/devel/ReSSPublica/.cache" \
--set RESSPUBLICA_ASSETS "/home/tomasr/devel/ReSSPublica/assets"
'';
mainProgram = "resspublica.py";
@@ -36,11 +48,23 @@
packages.default = self.packages.${system}.resspublica;
devShells = {
default = pkgs.mkShell {
packages = with pkgs; [
python3
python314Packages.sparqlwrapper
python314Packages.feedgen
python314Packages.tinydb
packages = with pkgs.python314Packages; [
pkgs.python3
setuptools
sparqlwrapper
feedgen
tinydb
pandas
geopandas
pyarrow
fiona
pyproj
shapely
numpy
matplotlib
pyogrio
beautifulsoup4
pycurl
];
};
};