Skip to content

Commit

Permalink
add sip-4.16.1
Browse files Browse the repository at this point in the history
  • Loading branch information
宋文武 committed Jul 7, 2014
1 parent 8f33899 commit 05c0bb9
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
26 changes: 26 additions & 0 deletions pkgs/development/python-modules/sip/4.16.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{ stdenv, fetchurl, python }:

stdenv.mkDerivation rec {
name = "sip-4.16.1";

src = fetchurl {
url = "mirror://sourceforge/pyqt/sip/${name}/${name}.tar.gz";
sha256 = "1hknl71ij924syc9ik9nk4z051q3n75y7w27q9i07awpd39sp7m4";
};

configurePhase = ''
${python.executable} ./configure.py \
-d $out/lib/${python.libPrefix}/site-packages \
-b $out/bin -e $out/include
'';

buildInputs = [ python ];

meta = with stdenv.lib; {
description = "Creates C++ bindings for Python modules";
homepage = "http://www.riverbankcomputing.co.uk/";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ lovek323 sander urkud ];
platforms = platforms.all;
};
}
5 changes: 5 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,11 @@ rec {
inherit python;
};

sip_4_16 = import ../development/python-modules/sip/4.16.nix {
inherit (pkgs) stdenv fetchurl;
inherit python;
};

tables = import ../development/python-modules/tables {
inherit (pkgs) stdenv fetchurl bzip2 lzo;
inherit python buildPythonPackage cython numpy numexpr;
Expand Down

0 comments on commit 05c0bb9

Please sign in to comment.