1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

* Applied a patch to get Euca2ools / Boto to work on Python 2.7.

svn path=/nixpkgs/trunk/; revision=29956
This commit is contained in:
Eelco Dolstra 2011-10-21 15:01:40 +00:00
parent 5e51aadc10
commit cac34d2be5
2 changed files with 21 additions and 0 deletions

View file

@ -0,0 +1,19 @@
Fix Boto 1.9 on Python 2.7.
https://github.com/boto/boto/commit/6760075073c34d6dddb7e13b80dfa8d09f0f4f79
diff --git a/boto/connection.py b/boto/connection.py
index c5779e2..71942f1 100644
--- a/boto/connection.py
+++ b/boto/connection.py
@@ -252,8 +252,9 @@ class AWSAuthConnection(object):
# versions, it would append ":443" to the hostname sent
# in the Host header and so we needed to make sure we
# did the same when calculating the V2 signature. In 2.6
+ # (and higher!)
# it no longer does that. Hence, this kludge.
- if sys.version[:3] == "2.6" and port == 443:
+ if sys.version[:3] in ('2.6', '2.7') and port == 443:
signature_host = self.host
else:
signature_host = '%s:%d' % (self.host, port)

View file

@ -156,6 +156,8 @@ let pythonPackages = python.modules // rec {
sha1 = "00a033b0a593c3ca82927867950f73d88b831155";
};
patches = [ ../development/python-modules/boto-1.9-python-2.7.patch ];
meta = {
homepage = http://code.google.com/p/boto/;