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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

99 lines
1.8 KiB
Nix
Raw Normal View History

{ lib
, python310
2021-03-24 14:26:45 +00:00
, fetchFromGitHub
, gdk-pixbuf
, gnome
2021-03-24 14:26:45 +00:00
, gpsbabel
2018-12-31 14:28:20 +00:00
, glib-networking
, glibcLocales
2021-03-24 14:26:45 +00:00
, gobject-introspection
, gtk3
, perl
, sqlite
2018-12-31 14:28:20 +00:00
, tzdata
2021-03-24 14:26:45 +00:00
, webkitgtk
, wrapGAppsHook3
2021-05-08 13:45:03 +00:00
, xvfb-run
2018-12-31 14:28:20 +00:00
}:
2014-12-21 10:23:53 +00:00
let
python = python310.override {
2021-03-24 14:26:45 +00:00
packageOverrides = (self: super: {
matplotlib = super.matplotlib.override {
enableGtk3 = true;
};
});
2014-12-21 10:23:53 +00:00
};
2021-03-24 14:26:45 +00:00
in python.pkgs.buildPythonApplication rec {
2018-12-31 14:28:20 +00:00
pname = "pytrainer";
version = "2.2.1";
2014-12-21 10:23:53 +00:00
src = fetchFromGitHub {
owner = "pytrainer";
repo = "pytrainer";
rev = "v${version}";
hash = "sha256-t61vHVTKN5KsjrgbhzljB7UZdRask7qfYISd+++QbV0=";
2014-12-21 10:23:53 +00:00
};
2021-03-24 14:26:45 +00:00
propagatedBuildInputs = with python.pkgs; [
sqlalchemy
2021-03-24 14:26:45 +00:00
python-dateutil
matplotlib
lxml
2020-03-09 21:30:46 +00:00
setuptools
2021-03-24 14:26:45 +00:00
requests
gdal
2018-12-31 14:28:20 +00:00
];
2018-12-31 14:28:20 +00:00
nativeBuildInputs = [
gobject-introspection
wrapGAppsHook3
2018-12-31 14:28:20 +00:00
];
2014-12-21 10:23:53 +00:00
2018-12-31 14:28:20 +00:00
buildInputs = [
sqlite
gtk3
webkitgtk
glib-networking
gnome.adwaita-icon-theme
2021-03-24 14:26:45 +00:00
gdk-pixbuf
];
makeWrapperArgs = [
"--prefix" "PATH" ":" (lib.makeBinPath [ perl gpsbabel ])
2018-12-31 14:28:20 +00:00
];
2014-12-21 10:23:53 +00:00
nativeCheckInputs = [
2021-03-24 14:26:45 +00:00
glibcLocales
perl
2021-05-08 13:45:03 +00:00
xvfb-run
2021-03-24 14:26:45 +00:00
] ++ (with python.pkgs; [
mysqlclient
psycopg2
]);
postPatch = ''
substituteInPlace pytrainer/platform.py \
--replace 'sys.prefix' "\"$out\""
'';
2018-02-21 23:12:44 +00:00
checkPhase = ''
env \
HOME=$TEMPDIR \
TZDIR=${tzdata}/share/zoneinfo \
2018-12-31 14:28:20 +00:00
TZ=Europe/Kaliningrad \
LC_TIME=C \
2018-12-31 14:28:20 +00:00
xvfb-run -s '-screen 0 800x600x24' \
${python.interpreter} setup.py test
2018-02-21 23:12:44 +00:00
'';
meta = with lib; {
2021-03-24 14:26:45 +00:00
homepage = "https://github.com/pytrainer/pytrainer";
2014-12-21 10:23:53 +00:00
description = "Application for logging and graphing sporting excursions";
mainProgram = "pytrainer";
2021-03-24 14:26:45 +00:00
maintainers = with maintainers; [ rycee dotlambda ];
2014-12-21 10:23:53 +00:00
license = licenses.gpl2Plus;
platforms = platforms.linux;
};
}