3
0
Fork 0
forked from mirrors/nixpkgs

anki: Depend on pythonPackages.beautifulsoup4 instead of pythonPackages.beautifulsoup

This commit is contained in:
adisbladis 2017-10-28 21:52:26 +08:00
parent e86b3a07d1
commit e87ffaefc6
No known key found for this signature in database
GPG key ID: ED58F95069B004F5

View file

@ -7,8 +7,8 @@
}:
let
version = "2.0.46";
inherit (python2Packages) python wrapPython sqlalchemy pyaudio beautifulsoup httplib2 matplotlib pyqt4;
version = "2.0.47";
inherit (python2Packages) python wrapPython sqlalchemy pyaudio beautifulsoup4 httplib2 matplotlib pyqt4;
qt4 = pyqt4.qt;
in
stdenv.mkDerivation rec {
@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
sha256 = "01h51rbnj0r6lmjnn2vzxzaf7mxkc0azmg1v4mvf4pkpsp50a7hr";
};
pythonPath = [ pyqt4 sqlalchemy pyaudio beautifulsoup httplib2 ]
pythonPath = [ pyqt4 sqlalchemy pyaudio beautifulsoup4 httplib2 ]
++ lib.optional plotsSupport matplotlib;
buildInputs = [ python wrapPython lame mplayer libpulseaudio ];