about summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorRoger Qiu <roger.qiu@polyhack.io>2019-01-21 12:21:34 +1100
committerRoger Qiu <roger.qiu@polyhack.io>2019-01-22 16:21:51 +1100
commit96c408b7708d9cd2d7833f6b505f05646105bfe4 (patch)
tree204ee632be5f8322f42736c43620d5473e79e2d7 /pkgs/development/python-modules
parent288407be95ff6c5cc6773cfc9e21077098f48775 (diff)
downloadnixlib-96c408b7708d9cd2d7833f6b505f05646105bfe4.tar
nixlib-96c408b7708d9cd2d7833f6b505f05646105bfe4.tar.gz
nixlib-96c408b7708d9cd2d7833f6b505f05646105bfe4.tar.bz2
nixlib-96c408b7708d9cd2d7833f6b505f05646105bfe4.tar.lz
nixlib-96c408b7708d9cd2d7833f6b505f05646105bfe4.tar.xz
nixlib-96c408b7708d9cd2d7833f6b505f05646105bfe4.tar.zst
nixlib-96c408b7708d9cd2d7833f6b505f05646105bfe4.zip
pythonPackages.azure-storage-blob: init at 1.4.0
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/azure-storage-blob/default.nix33
1 files changed, 33 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/azure-storage-blob/default.nix b/pkgs/development/python-modules/azure-storage-blob/default.nix
new file mode 100644
index 000000000000..9a84a7326850
--- /dev/null
+++ b/pkgs/development/python-modules/azure-storage-blob/default.nix
@@ -0,0 +1,33 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, azure-common
+, azure-storage-common
+, isPy3k
+, futures
+}:
+
+buildPythonPackage rec {
+  pname = "azure-storage-blob";
+  version = "1.4.0";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "65ebe2e54460566c2077c6b3773a2a0623eabc7b95602010cb51b84077087fda";
+  };
+
+  propagatedBuildInputs = [
+    azure-common
+    azure-storage-common
+  ] ++ lib.optional (!isPy3k) futures;
+
+  # has no tests
+  doCheck = false;
+
+  meta = with lib; {
+    description = "Client library for Microsoft Azure Storage services containing the blob service APIs";
+    homepage = https://github.com/Azure/azure-storage-python/tree/master/azure-storage-blob;
+    license = licenses.mit;
+    maintainers = with maintainers; [ cmcdragonkai ];
+  };
+}