linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / sip / default.nix
blob0027c1c0ba5f28eec3577ed3fc8c16252129e579
1 { lib, fetchurl, buildPythonPackage, python, isPyPy, sip-module ? "sip" }:
3 buildPythonPackage rec {
4   pname = sip-module;
5   version = "4.19.24";
6   format = "other";
8   disabled = isPyPy;
10   src = fetchurl {
11     url = "https://www.riverbankcomputing.com/static/Downloads/sip/${version}/sip-${version}.tar.gz";
12     sha256 = "1ra15vb5i9gkg2vdvh16cq9x2mmzw1yi3xphxs8q34q1pf83gkgd";
13   };
15   configurePhase = ''
16     ${python.executable} ./configure.py \
17       --sip-module ${sip-module} \
18       -d $out/${python.sitePackages} \
19       -b $out/bin -e $out/include
20   '';
22   enableParallelBuilding = true;
24   installCheckPhase = let
25     modules = [
26       sip-module
27       "sipconfig"
28     ];
29     imports = lib.concatMapStrings (module: "import ${module};") modules;
30   in ''
31     echo "Checking whether modules can be imported..."
32     PYTHONPATH=$out/${python.sitePackages}:$PYTHONPATH ${python.interpreter} -c "${imports}"
33   '';
35   doCheck = true;
37   meta = with lib; {
38     description = "Creates C++ bindings for Python modules";
39     homepage    = "http://www.riverbankcomputing.co.uk/";
40     license     = licenses.gpl2Plus;
41     maintainers = with maintainers; [ lovek323 sander ];
42     platforms   = platforms.all;
43   };