Files
nixpkgs/pkgs/development/python-modules/python-sip/default.nix
T

21 lines
570 B
Nix
Raw Normal View History

{ stdenv, fetchurl, python }:
2010-04-11 21:03:51 +00:00
stdenv.mkDerivation rec {
2011-08-09 20:39:19 +00:00
name = "sip-4.12.4";
src = fetchurl {
2011-07-21 20:14:17 +00:00
url = "http://www.riverbankcomputing.co.uk/static/Downloads/sip4/${name}.tar.gz";
2011-08-09 20:39:19 +00:00
sha256 = "1cs7q2z5r59yil71ysy9nc32x0s65b9dz9jcrdsjmp6cww51z33n";
};
2010-01-07 22:47:30 +00:00
configurePhase = "python ./configure.py -d $out/lib/${python.libPrefix}/site-packages -b $out/bin -e $out/include";
buildInputs = [ python ];
2009-09-10 17:00:30 +00:00
meta = {
description = "Creates C++ bindings for Python modules";
license = "GPL";
maintainers = [ stdenv.lib.maintainers.sander ];
2009-09-10 17:00:30 +00:00
};
}