summary refs log tree commit diff
path: root/pkgs/applications/misc/pytrainer/default.nix
blob: 0375b99af483e3ccb689d9bb492104c47faeb9e3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{ 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
  ];

  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;
  };
}