95 lines
1.7 KiB
Nix
95 lines
1.7 KiB
Nix
|
{ stdenv
|
||
|
, fetchFromGitHub
|
||
|
, perl
|
||
|
, python3
|
||
|
, sqlite
|
||
|
, gpsbabel
|
||
|
, gnome3
|
||
|
, gobject-introspection
|
||
|
, wrapGAppsHook
|
||
|
, gtk3
|
||
|
, xvfb_run
|
||
|
, webkitgtk
|
||
|
, glib-networking
|
||
|
, glibcLocales
|
||
|
, tzdata
|
||
|
, substituteAll
|
||
|
}:
|
||
|
|
||
|
let
|
||
|
# Pytrainer needs a matplotlib with GTK backend.
|
||
|
matplotlibGtk = python3.pkgs.matplotlib.override {
|
||
|
enableGtk3 = true;
|
||
|
};
|
||
|
|
||
|
in
|
||
|
|
||
|
python3.pkgs.buildPythonApplication rec {
|
||
|
pname = "pytrainer";
|
||
|
version = "2.0.1";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "pytrainer";
|
||
|
repo = "pytrainer";
|
||
|
rev = "v${version}";
|
||
|
sha256 = "0m2sy3f5pyc4wv1ns31r7vlafqkzp0a2jasaskwrkl6273agbbk9";
|
||
|
};
|
||
|
|
||
|
patches = [
|
||
|
(substituteAll {
|
||
|
src = ./fix-paths.patch;
|
||
|
perl = "${perl}/bin/perl";
|
||
|
})
|
||
|
];
|
||
|
|
||
|
postPatch = ''
|
||
|
substituteInPlace ./setup.py \
|
||
|
--replace "'mysqlclient'," ""
|
||
|
'';
|
||
|
|
||
|
propagatedBuildInputs = with python3.pkgs; [
|
||
|
dateutil
|
||
|
lxml
|
||
|
matplotlibGtk
|
||
|
pygobject3
|
||
|
sqlalchemy
|
||
|
sqlalchemy_migrate
|
||
|
psycopg2
|
||
|
requests
|
||
|
certifi
|
||
|
setuptools
|
||
|
];
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
gobject-introspection
|
||
|
wrapGAppsHook
|
||
|
xvfb_run
|
||
|
];
|
||
|
|
||
|
buildInputs = [
|
||
|
gpsbabel
|
||
|
sqlite
|
||
|
gtk3
|
||
|
webkitgtk
|
||
|
glib-networking
|
||
|
glibcLocales
|
||
|
gnome3.adwaita-icon-theme
|
||
|
];
|
||
|
|
||
|
checkPhase = ''
|
||
|
env HOME=$TEMPDIR TZDIR=${tzdata}/share/zoneinfo \
|
||
|
TZ=Europe/Kaliningrad \
|
||
|
LC_ALL=en_US.UTF-8 \
|
||
|
xvfb-run -s '-screen 0 800x600x24' \
|
||
|
${python3.interpreter} setup.py test
|
||
|
'';
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
homepage = "https://github.com/pytrainer/pytrainer/wiki";
|
||
|
description = "Application for logging and graphing sporting excursions";
|
||
|
maintainers = [ maintainers.rycee ];
|
||
|
license = licenses.gpl2Plus;
|
||
|
platforms = platforms.linux;
|
||
|
};
|
||
|
}
|