mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 13:40:28 +03:00
python pyside: move callPackage to python-packages.nix
This should make pyside available for all Python versions.
This commit is contained in:
parent
2ed93d74d5
commit
515a13b1f5
7 changed files with 31 additions and 18 deletions
|
@ -1,7 +1,7 @@
|
|||
{ stdenv, fetchurl, cmake, pyside, python27, qt4, pysideShiboken }:
|
||||
{ stdenv, fetchurl, cmake, pyside, python, qt4, pysideShiboken }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "pyside-tools-0.2.15";
|
||||
name = "${python.libPrefix}-pyside-tools-0.2.15";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/PySide/Tools/archive/0.2.15.tar.gz";
|
||||
|
@ -10,7 +10,7 @@ stdenv.mkDerivation {
|
|||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
buildInputs = [ cmake pyside python27 qt4 pysideShiboken ];
|
||||
buildInputs = [ cmake pyside python qt4 pysideShiboken ];
|
||||
|
||||
meta = {
|
||||
description = "Tools for pyside, the LGPL-licensed Python bindings for the Qt cross-platform application and UI framework";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue