nixpkgs/pkgs/applications/misc/pytrainer/default.nix

65 lines
1.7 KiB
Nix
Raw Normal View History

2018-02-21 23:12:44 +00:00
{ stdenv, fetchFromGitHub, perl, python, sqlite, gpsbabel
, withWebKit ? false }:
2014-12-21 10:23:53 +00:00
let
# Pytrainer needs a matplotlib with GTK backend. Also ensure we are
# using the pygtk with glade support as needed by pytrainer.
2018-02-21 23:12:44 +00:00
matplotlibGtk = python.pkgs.matplotlib.override {
2014-12-21 10:23:53 +00:00
enableGtk2 = true;
2018-02-21 23:12:44 +00:00
pygtk = python.pkgs.pyGtkGlade;
2014-12-21 10:23:53 +00:00
};
in
2018-02-21 23:12:44 +00:00
python.pkgs.buildPythonApplication rec {
name = "pytrainer-${version}";
2018-05-10 20:41:40 +01:00
version = "1.12.1";
2014-12-21 10:23:53 +00:00
src = fetchFromGitHub {
owner = "pytrainer";
repo = "pytrainer";
rev = "v${version}";
2018-05-10 20:41:40 +01:00
sha256 = "0rzf8kks96qzlknh6g3b9pjq04j7qk6rmz58scp7sck8xz9rjbwx";
2014-12-21 10:23:53 +00:00
};
namePrefix = "";
patches = [
# The test fails in the UTC timezone and C locale.
./fix-test-tz.patch
2014-12-21 10:23:53 +00:00
# The existing use of pywebkitgtk shows raw HTML text instead of
# map. This patch solves the problems by showing the file from a
# string, which allows setting an explicit MIME type.
./pytrainer-webkit.patch
2014-12-21 10:23:53 +00:00
];
2018-02-27 21:20:26 +00:00
postPatch = ''
substituteInPlace ./setup.py \
--replace "'mysqlclient'," ""
'';
2018-02-21 23:12:44 +00:00
propagatedBuildInputs = with python.pkgs; [
2018-02-27 21:20:26 +00:00
dateutil lxml matplotlibGtk pyGtkGlade sqlalchemy sqlalchemy_migrate psycopg2
] ++ stdenv.lib.optional withWebKit [ pywebkitgtk ];
buildInputs = [ perl gpsbabel sqlite ];
2014-12-21 10:23:53 +00:00
# This package contains no binaries to patch or strip.
dontPatchELF = true;
dontStrip = true;
2018-02-21 23:12:44 +00:00
checkPhase = ''
${python.interpreter} -m unittest discover
'';
2014-12-21 10:23:53 +00:00
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;
};
}