2023-03-06 15:03:36 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
2017-12-18 10:07:46 +00:00
|
|
|
, python
|
2023-03-06 15:03:36 +00:00
|
|
|
, fetchurl
|
2019-11-27 20:05:34 +00:00
|
|
|
, anki
|
2014-03-25 16:37:05 +00:00
|
|
|
}:
|
2017-12-18 10:07:46 +00:00
|
|
|
|
|
|
|
python.pkgs.buildPythonApplication rec {
|
|
|
|
pname = "mnemosyne";
|
2020-07-25 12:33:04 +00:00
|
|
|
version = "2.7.2";
|
2017-12-18 10:07:46 +00:00
|
|
|
|
2014-03-24 18:55:25 +00:00
|
|
|
src = fetchurl {
|
2017-12-18 10:07:46 +00:00
|
|
|
url = "mirror://sourceforge/project/mnemosyne-proj/mnemosyne/mnemosyne-${version}/Mnemosyne-${version}.tar.gz";
|
2020-07-25 12:33:04 +00:00
|
|
|
sha256 = "09yp9zc00xrc9dmjbsscnkb3hsv3yj46sxikc0r6s9cbghn3nypy";
|
2014-03-24 18:55:25 +00:00
|
|
|
};
|
2017-12-18 10:07:46 +00:00
|
|
|
|
2020-04-10 23:13:08 +00:00
|
|
|
nativeBuildInputs = with python.pkgs; [ pyqtwebengine.wrapQtAppsHook ];
|
2019-11-27 20:05:34 +00:00
|
|
|
|
|
|
|
buildInputs = [ anki ];
|
|
|
|
|
2017-12-18 10:07:46 +00:00
|
|
|
propagatedBuildInputs = with python.pkgs; [
|
2020-04-10 23:46:57 +00:00
|
|
|
cheroot
|
|
|
|
cherrypy
|
2020-02-27 00:06:06 +00:00
|
|
|
googletrans
|
|
|
|
gtts
|
2014-03-24 18:55:25 +00:00
|
|
|
matplotlib
|
2020-04-10 23:46:57 +00:00
|
|
|
pyopengl
|
|
|
|
pyqt5
|
|
|
|
pyqtwebengine
|
2015-12-17 08:30:02 +00:00
|
|
|
webob
|
2014-03-24 18:55:25 +00:00
|
|
|
];
|
2017-12-18 10:07:46 +00:00
|
|
|
|
|
|
|
prePatch = ''
|
2023-03-06 15:03:36 +00:00
|
|
|
substituteInPlace setup.py \
|
|
|
|
--replace '("", ["/usr/local/bin/mplayer"])' ""
|
2014-03-24 18:55:25 +00:00
|
|
|
'';
|
2017-12-18 10:07:46 +00:00
|
|
|
|
2023-03-06 15:03:36 +00:00
|
|
|
# No tests/ directory in tarball
|
2019-11-27 20:05:34 +00:00
|
|
|
doCheck = false;
|
|
|
|
|
2017-02-14 00:40:36 +00:00
|
|
|
postInstall = ''
|
2020-04-11 00:16:16 +00:00
|
|
|
mkdir -p $out/share/applications
|
|
|
|
mv mnemosyne.desktop $out/share/applications
|
2017-02-14 00:40:36 +00:00
|
|
|
'';
|
2017-12-18 10:07:46 +00:00
|
|
|
|
2019-12-10 23:23:57 +00:00
|
|
|
dontWrapQtApps = true;
|
|
|
|
|
2020-04-10 23:13:08 +00:00
|
|
|
makeWrapperArgs = [
|
|
|
|
"\${qtWrapperArgs[@]}"
|
|
|
|
];
|
2019-12-10 23:23:57 +00:00
|
|
|
|
2014-03-24 18:55:25 +00:00
|
|
|
meta = {
|
2020-02-24 00:43:25 +00:00
|
|
|
homepage = "https://mnemosyne-proj.org/";
|
2014-11-11 13:20:43 +00:00
|
|
|
description = "Spaced-repetition software";
|
2014-03-24 18:55:25 +00:00
|
|
|
longDescription = ''
|
|
|
|
The Mnemosyne Project has two aspects:
|
|
|
|
|
|
|
|
* It's a free flash-card tool which optimizes your learning process.
|
|
|
|
* It's a research project into the nature of long-term memory.
|
|
|
|
|
|
|
|
We strive to provide a clear, uncluttered piece of software, easy to use
|
|
|
|
and to understand for newbies, but still infinitely customisable through
|
|
|
|
plugins and scripts for power users.
|
|
|
|
|
|
|
|
## Efficient learning
|
|
|
|
|
|
|
|
Mnemosyne uses a sophisticated algorithm to schedule the best time for
|
|
|
|
a card to come up for review. Difficult cards that you tend to forget
|
|
|
|
quickly will be scheduled more often, while Mnemosyne won't waste your
|
|
|
|
time on things you remember well.
|
|
|
|
|
|
|
|
## Memory research
|
|
|
|
|
|
|
|
If you want, anonymous statistics on your learning process can be
|
|
|
|
uploaded to a central server for analysis. This data will be valuable to
|
|
|
|
study the behaviour of our memory over a very long time period. The
|
|
|
|
results will be used to improve the scheduling algorithms behind the
|
2015-03-10 14:38:59 +00:00
|
|
|
software even further.
|
2014-03-24 18:55:25 +00:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|