python pyqt: add python.libPrefix

This commit is contained in:
Frederik Rietdijk 2015-12-09 14:19:29 +01:00
parent 2aa37ad8a2
commit 7d08a9c877
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
let version = "4.11.3";
in
stdenv.mkDerivation {
name = "PyQt-x11-gpl-${version}";
name = "${python.libPrefix}-PyQt-x11-gpl-${version}";
src = fetchurl {
url = "mirror://sourceforge/pyqt/PyQt4/PyQt-${version}/PyQt-x11-gpl-${version}.tar.gz";

View File

@ -3,7 +3,7 @@
let
version = "5.4.2";
in stdenv.mkDerivation {
name = "PyQt-${version}";
name = "${python.libPrefix}-PyQt-${version}";
meta = with stdenv.lib; {
description = "Python bindings for Qt5";