summary refs log tree commit diff
path: root/pkgs/development/python-modules/azure-storage-queue
diff options
context:
space:
mode:
authorRoger Qiu <roger.qiu@polyhack.io>2019-01-21 12:22:31 +1100
committerRoger Qiu <roger.qiu@polyhack.io>2019-01-22 16:23:48 +1100
commit70cd3bef3d74fba9c7611a8ee4808c081b2dabce (patch)
treee503e6bab575bc796eace6d7ac0f8fa71fac87ff /pkgs/development/python-modules/azure-storage-queue
parent1fa72762c97ddc632457ff32a563a679614f6008 (diff)
downloadnixpkgs-70cd3bef3d74fba9c7611a8ee4808c081b2dabce.tar
nixpkgs-70cd3bef3d74fba9c7611a8ee4808c081b2dabce.tar.gz
nixpkgs-70cd3bef3d74fba9c7611a8ee4808c081b2dabce.tar.bz2
nixpkgs-70cd3bef3d74fba9c7611a8ee4808c081b2dabce.tar.lz
nixpkgs-70cd3bef3d74fba9c7611a8ee4808c081b2dabce.tar.xz
nixpkgs-70cd3bef3d74fba9c7611a8ee4808c081b2dabce.tar.zst
nixpkgs-70cd3bef3d74fba9c7611a8ee4808c081b2dabce.zip
pythonPackages.azure-storage-queue: init at 1.4.0
Diffstat (limited to 'pkgs/development/python-modules/azure-storage-queue')
-rw-r--r--pkgs/development/python-modules/azure-storage-queue/default.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/azure-storage-queue/default.nix b/pkgs/development/python-modules/azure-storage-queue/default.nix
new file mode 100644
index 00000000000..1ca1288e9b4
--- /dev/null
+++ b/pkgs/development/python-modules/azure-storage-queue/default.nix
@@ -0,0 +1,31 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, azure-common
+, azure-storage-common
+}:
+
+buildPythonPackage rec {
+  pname = "azure-storage-queue";
+  version = "1.4.0";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "0bafe9e61c0ce7b3f3ecadea21e931dab3248bd4989dc327a8666c5deae7f7ed";
+  };
+
+  propagatedBuildInputs = [
+    azure-common
+    azure-storage-common
+  ];
+
+  # has no tests
+  doCheck = false;
+
+  meta = with lib; {
+    description = "Client library for Microsoft Azure Storage services containing the queue service APIs";
+    homepage = https://github.com/Azure/azure-storage-python/tree/master/azure-storage-queue;
+    license = licenses.mit;
+    maintainers = with maintainers; [ cmcdragonkai ];
+  };
+}