aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/boto
diff options
context:
space:
mode:
authorKatharina Fey <kookie@spacekookie.de>2019-10-05 12:43:18 +0000
committerKatharina Fey <kookie@spacekookie.de>2019-10-05 12:44:52 +0000
commitcf85056ba64caf3267d43255ef4a1243e9c8ee3b (patch)
tree3051519e9c8275b870aac43f80af875715c9d124 /nixpkgs/pkgs/development/python-modules/boto
parent1148b1d122bc03e9a3665856c9b7bb96bd4e3994 (diff)
parent2436c27541b2f52deea3a4c1691216a02152e729 (diff)
Add 'nixpkgs/' from commit '2436c27541b2f52deea3a4c1691216a02152e729'
git-subtree-dir: nixpkgs git-subtree-mainline: 1148b1d122bc03e9a3665856c9b7bb96bd4e3994 git-subtree-split: 2436c27541b2f52deea3a4c1691216a02152e729
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/boto')
-rw-r--r--nixpkgs/pkgs/development/python-modules/boto/default.nix38
1 files changed, 38 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/boto/default.nix b/nixpkgs/pkgs/development/python-modules/boto/default.nix
new file mode 100644
index 00000000000..e58f071589a
--- /dev/null
+++ b/nixpkgs/pkgs/development/python-modules/boto/default.nix
@@ -0,0 +1,38 @@
+{ pkgs
+, buildPythonPackage
+, fetchPypi
+, python
+, nose
+, mock
+, requests
+, httpretty
+}:
+
+buildPythonPackage rec {
+ pname = "boto";
+ version = "2.49.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "ea0d3b40a2d852767be77ca343b58a9e3a4b00d9db440efb8da74b4e58025e5a";
+ };
+
+ checkPhase = ''
+ ${python.interpreter} tests/test.py default
+ '';
+
+ checkInputs = [ nose mock ];
+ propagatedBuildInputs = [ requests httpretty ];
+
+ meta = with pkgs.lib; {
+ homepage = https://github.com/boto/boto;
+ license = licenses.mit;
+ description = "Python interface to Amazon Web Services";
+ longDescription = ''
+ The boto module is an integrated interface to current and
+ future infrastructural services offered by Amazon Web
+ Services. This includes S3, SQS, EC2, among others.
+ '';
+ maintainers = [ maintainers.costrouc ];
+ };
+}