summary refs log tree commit diff
path: root/pkgs/development/python-modules/python-sip/4.7.4.nix
blob: bc4437a279557f5f8bd911359ff22afddff9e289 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
args : with args; 
rec {
  src = fetchurl {
    url = http://ftp.de.debian.org/debian/pool/main/s/sip4-qt3/sip4-qt3_4.7.4.orig.tar.gz;
    sha256 = "0g518b26346q9b0lm13rsgdbq14r4nckyjbf209ylakwx6zir4l5";
  };

  buildInputs = [python];
  configureFlags = [ '' -e "$prefix/include/python$pythonVersion" ''];

  /* doConfigure should be specified separately */
  phaseNames = ["doPythonConfigure" "doMakeInstall"];
      
  name = "python-sip-" + version;
  meta = {
    description = "Python/C++ bindings generator";
  };
}