From 3c25ec6a3aa5a2fd5b45ae6639bf4cc389847a21 Mon Sep 17 00:00:00 2001 From: Marc Weber Date: Sat, 23 May 2009 13:04:41 +0000 Subject: [PATCH] adding soappy svn path=/nixpkgs/trunk/; revision=15687 --- .../interpreters/python-new/2.5/default.nix | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/pkgs/development/interpreters/python-new/2.5/default.nix b/pkgs/development/interpreters/python-new/2.5/default.nix index a899c4f3255..97edf899286 100644 --- a/pkgs/development/interpreters/python-new/2.5/default.nix +++ b/pkgs/development/interpreters/python-new/2.5/default.nix @@ -517,6 +517,36 @@ in }; */ + fpconst = t.pythonLibSetup.merge { + name = "fpconst-0.7.3"; + pyCheck = "import fpconst"; + src = fetchurl { + url="mirror://sourceforge/rsoap/fpconst-0.7.3.tar.gz"; + sha256 = "1a5c2e4a1ecefd9981988cea15068699eccbc55e350af3471e782083d390c727"; + }; + meta = { + description="Python Module for handling IEEE 754 floating point special values"; + homepage="http://chaco.bst.rochester.edu:8080/statcomp/projects/RStatServer/fpconst/"; + license = "GPLv2"; + }; + }; + + soappy = t.pythonLibSetup.merge { + name = "soappy-0.12"; + pyCheck = "from SOAPpy import WSDL"; + propagatedBuildInputs = [ t.fpconst ]; + src = fetchurl { + url = "http://switch.dl.sourceforge.net/sourceforge/pywebsvcs/SOAPpy-0.12.0.tar.gz"; + sha256 = "02a0wpir0gl0n9cl7a5hxliwsywvcw847i5in7i14i57kk6dl7rd"; + }; + patches = [ ./gentoo-python-2.5-compat.patch ]; + meta = { + description = "SOAP implementation for Python"; + homepage="http://pywebsvcs.sourceforge.net/"; + license = "BSD"; + }; + }; + ### python applications pythonExStub = composableDerivation {} {