pythonPackages.pyside: fix evaluation

This commit is contained in:
Frederik Rietdijk 2016-09-01 17:11:04 +02:00
parent e1d1a573e5
commit 571ee39714

View File

@ -1,6 +1,6 @@
{ stdenv, fetchurl, cmake, python, pysideGeneratorrunner, pysideShiboken, qt4 }:
{ lib, fetchurl, cmake, python, mkPythonDerivation, pysideGeneratorrunner, pysideShiboken, qt4 }:
stdenv.mkPythonDerivation rec {
mkPythonDerivation rec {
name = "${python.libPrefix}-pyside-${version}";
version = "1.2.4";
@ -17,9 +17,9 @@ stdenv.mkPythonDerivation rec {
meta = {
description = "LGPL-licensed Python bindings for the Qt cross-platform application and UI framework";
license = stdenv.lib.licenses.lgpl21;
license = lib.licenses.lgpl21;
homepage = "http://www.pyside.org";
maintainers = [ stdenv.lib.maintainers.chaoflow ];
platforms = stdenv.lib.platforms.all;
maintainers = [ lib.maintainers.chaoflow ];
platforms = lib.platforms.all;
};
}