Adding calibre. This involved also:
[nixpkgs-libre.git] / pkgs / development / python-modules / pyqt / default.nix
blobf2c72f0ff2779a618424dbcc7cee18a02eed498e
1 {stdenv, fetchurl, lib, python, sip, qt4}:
3 stdenv.mkDerivation {
4   name = "pyqt-x11-gpl-4.5.4";
5   src = fetchurl {
6     url = http://pyqwt.sourceforge.net/support/PyQt-x11-gpl-4.5.4.tar.gz; # Not downloading from riverbank, since they remove older releases
7     sha256 = "1a55zng6yhnbk5swc02bkbyccdgf0f0v94yxk9v5a43hv9xnrl5k";
8   };
9   configurePhase = "python ./configure.py --confirm-license -b $out/bin -d $out/lib/${python.libPrefix}/site-packages -v $out/share/sip -p $out/plugins";
10   buildInputs = [ python sip qt4 ];
11   meta = {
12     description = "Python bindings for Qt";
13     license = "GPL";
14     homepage = http://www.riverbankcomputing.co.uk;
15     maintainers = [ lib.maintainers.sander ];
16     platforms = lib.platforms.mesaPlatforms;
17   };