Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1e3a0e0dd9f5
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: da3936396d64
Choose a head ref
  • 3 commits
  • 2 files changed
  • 1 contributor

Commits on Mar 24, 2019

  1. pythonPackages.pivy: fix build

    (cherry picked from commit 17369ce)
    timor authored and Robert Schütz committed Mar 24, 2019
    Copy the full SHA
    18e7ce4 View commit details
  2. pythonPackages.pysideTools: fix build

    (cherry picked from commit 6b8f800)
    timor authored and Robert Schütz committed Mar 24, 2019
    Copy the full SHA
    1bbc983 View commit details
  3. pythonPackages.pysideTools: add python deps to propagatedBuildInputs

    (cherry picked from commit de1634a)
    timor authored and Robert Schütz committed Mar 24, 2019
    Copy the full SHA
    da39363 View commit details
Showing with 11 additions and 2 deletions.
  1. +6 −1 pkgs/development/python-modules/pivy/default.nix
  2. +5 −1 pkgs/development/python-modules/pyside/tools.nix
7 changes: 6 additions & 1 deletion pkgs/development/python-modules/pivy/default.nix
Original file line number Diff line number Diff line change
@@ -16,8 +16,13 @@ buildPythonPackage rec {
sha256 = "18n14ha2d3j3ghg2f2aqnf2mks94nn7ma9ii7vkiwcay93zm82cf";
};

nativeBuildInputs = with pkgs; [
swig1 coin3d soqt
];

buildInputs = with pkgs; with xorg; [
swig1 coin3d soqt libGLU_combined
coin3d soqt
libGLU_combined
libXi libXext libSM libICE libX11
];

6 changes: 5 additions & 1 deletion pkgs/development/python-modules/pyside/tools.nix
Original file line number Diff line number Diff line change
@@ -13,7 +13,11 @@ buildPythonPackage rec {

enableParallelBuilding = true;

buildInputs = [ cmake pyside qt4 pysideShiboken ];
nativeBuildInputs = [ cmake ];

buildInputs = [ qt4 ];

propagatedBuildInputs = [ pyside pysideShiboken ];

meta = {
description = "Tools for pyside, the LGPL-licensed Python bindings for the Qt cross-platform application and UI framework";