{ stdenv , buildPythonApplication , callPackage , lib , python , fetchurl , fetchpatch , lame , mplayer , libpulseaudio , pyqt5 , decorator , beautifulsoup4 , sqlalchemy , pyaudio , requests , markdown , matplotlib , pytest , glibcLocales , nose , send2trash , CoreAudio # This little flag adds a huge number of dependencies, but we assume that # everyone wants Anki to draw plots with statistics by default. , plotsSupport ? true }: buildPythonApplication rec { version = "2.1.8"; name = "anki-${version}"; src = fetchurl { urls = [ "https://apps.ankiweb.net/downloads/current/${name}-source.tgz" # "https://apps.ankiweb.net/downloads/current/${name}-source.tgz" # "http://ankisrs.net/download/mirror/${name}.tgz" # "http://ankisrs.net/download/mirror/archive/${name}.tgz" ]; sha256 = "08wb9hwpmbq7636h7sinim33qygdwwlh3frqqh2gfgm49f46di2p"; }; propagatedBuildInputs = [ pyqt5 sqlalchemy beautifulsoup4 send2trash pyaudio requests decorator markdown ] ++ lib.optional plotsSupport matplotlib ++ lib.optional stdenv.isDarwin [ CoreAudio ] ; checkInputs = [ pytest glibcLocales nose ]; buildInputs = [ lame mplayer libpulseaudio ]; makeWrapperArgs = [ ''--prefix PATH ':' "${lame}/bin:${mplayer}/bin"'' ]; patches = [ # Disable updated version check. ./no-version-check.patch ]; buildPhase = '' # Dummy build phase # Anki does not use setup.py ''; postPatch = '' # Remove unused starter. We'll create our own, minimalistic, # starter. # rm anki/anki # Remove QT translation files. We'll use the standard QT ones. rm "locale/"*.qm ''; # UTF-8 locale needed for testing LC_ALL = "en_US.UTF-8"; checkPhase = '' # - Anki writes some files to $HOME during tests # - Skip tests using network env HOME=$TMP pytest --ignore tests/test_sync.py ''; installPhase = '' pp=$out/lib/${python.libPrefix}/site-packages mkdir -p $out/bin mkdir -p $out/share/applications mkdir -p $out/share/doc/anki mkdir -p $out/share/man/man1 mkdir -p $out/share/mime/packages mkdir -p $out/share/pixmaps mkdir -p $pp cat > $out/bin/anki <