-
-
Notifications
You must be signed in to change notification settings - Fork 14.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
geo-activity-playground: init at 0.28.0
- Loading branch information
1 parent
12723e1
commit 88016d4
Showing
1 changed file
with
52 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
{ | ||
lib, | ||
python3, | ||
fetchFromGitHub, | ||
}: | ||
python3.pkgs.buildPythonApplication rec { | ||
pname = "geo-activity-playground"; | ||
version = "0.28.0"; | ||
pyproject = true; | ||
src = fetchFromGitHub { | ||
repo = "geo-activity-playground"; | ||
owner = "martin-ueding"; | ||
rev = version; | ||
hash = "sha256-wzGbyHptfkoU0KcBt75mvDhYFKv50Vxn/DrWaHXf18k="; | ||
}; | ||
nativeBuildInputs = [ python3.pkgs.pythonRelaxDepsHook ]; | ||
pythonRelaxDeps = [ | ||
"pyarrow" | ||
"stravalib" | ||
]; | ||
build-system = [ python3.pkgs.poetry-core ]; | ||
dependencies = with python3.pkgs; [ | ||
shapely | ||
coloredlogs | ||
geojson | ||
matplotlib | ||
pandas | ||
scipy | ||
tqdm | ||
requests | ||
fitdecode | ||
gpxpy | ||
stravalib | ||
flask | ||
altair | ||
tcxreader | ||
pyarrow | ||
vegafusion | ||
vl-convert-python | ||
xmltodict | ||
appdirs | ||
imagehash | ||
]; | ||
|
||
meta = { | ||
description = "Data analysis and visualization based on GPS tracked outdoor activities"; | ||
homepage = "https://martin-ueding.github.io/geo-activity-playground/"; | ||
license = lib.licenses.mit; | ||
maintainers = with lib.maintainers; [ antonmosich ]; | ||
mainProgram = "geo-activity-playground"; | ||
}; | ||
} |