nixpkgs/pkgs/development/python-modules/pivy/default.nix
Vladimír Čunát aca17ae849
pythonPackages.pivy: provide libs missed by the linker
It builds again now, though it seems outdated.
I suspect this is needed after the large X update.
2019-01-13 15:46:58 +01:00

31 lines
644 B
Nix

{ stdenv
, buildPythonPackage
, fetchhg
, pkgs
, isPy3k
}:
buildPythonPackage rec {
version = "20101207";
pname = "pivy";
disabled = isPy3k; # Judging from SyntaxError
src = fetchhg {
url = "https://bitbucket.org/Coin3D/pivy";
rev = "8eab90908f2a3adcc414347566f4434636202344";
sha256 = "18n14ha2d3j3ghg2f2aqnf2mks94nn7ma9ii7vkiwcay93zm82cf";
};
buildInputs = with pkgs; with xorg; [
swig1 coin3d soqt libGLU_combined
libXi libXext libSM libICE libX11
];
meta = with stdenv.lib; {
homepage = http://pivy.coin3d.org/;
description = "A Python binding for Coin";
license = licenses.bsd0;
};
}