anki: format to fix indentation

Indentation was off the coding standards, so ran it through nixpkgs-fmt to
sanitize; no manual changes.
This commit is contained in:
Benjamin Hipple 2020-06-06 23:59:51 -04:00 committed by Bjørn Forsman
parent 93ebfdad49
commit 9a91be049a

View File

@ -22,10 +22,10 @@
, setuptools , setuptools
, send2trash , send2trash
, CoreAudio , CoreAudio
# This little flag adds a huge number of dependencies, but we assume that # This little flag adds a huge number of dependencies, but we assume that
# everyone wants Anki to draw plots with statistics by default. # everyone wants Anki to draw plots with statistics by default.
, plotsSupport ? true , plotsSupport ? true
# manual # manual
, asciidoc , asciidoc
}: }:
@ -87,8 +87,16 @@ buildPythonApplication rec {
outputs = [ "out" "doc" "man" ]; outputs = [ "out" "doc" "man" ];
propagatedBuildInputs = [ propagatedBuildInputs = [
pyqtwebengine sqlalchemy beautifulsoup4 send2trash pyaudio requests decorator pyqtwebengine
markdown jsonschema setuptools sqlalchemy
beautifulsoup4
send2trash
pyaudio
requests
decorator
markdown
jsonschema
setuptools
] ]
++ lib.optional plotsSupport matplotlib ++ lib.optional plotsSupport matplotlib
++ lib.optional stdenv.isDarwin [ CoreAudio ] ++ lib.optional stdenv.isDarwin [ CoreAudio ]