aboutsummaryrefslogtreecommitdiffstats
path: root/pkgs/development/python-modules/azure-storage-blob/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/azure-storage-blob/default.nix')
-rw-r--r--pkgs/development/python-modules/azure-storage-blob/default.nix37
1 files changed, 37 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 0000000..c421860
--- /dev/null
+++ b/pkgs/development/python-modules/azure-storage-blob/default.nix
@@ -0,0 +1,37 @@
+{ stdenv, buildPythonPackage, fetchPypi, isPy27
+, azure-common
+, azure-storage-common
+, azure-storage-nspkg
+, futures
+}:
+
+buildPythonPackage rec {
+ pname = "azure-storage-blob";
+ version = "1.1.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "0rhwi4jwk261c7ljb1pzb4y9i2rbzhk1pznzifjrf3vdwchdrp2g";
+ };
+
+ # Fix build w/ wheel 0.31, see https://github.com/Azure/azure-storage-python/pull/443
+ postPatch = ''
+ sed -i azure_bdist_wheel.py \
+ -e '1,483d' -e '/from wheel.bdist_wheel import bdist_wheel/ { s/^#//; }'
+ '';
+
+ propagatedBuildInputs = [
+ azure-common
+ azure-storage-common
+ azure-storage-nspkg
+ ] ++ stdenv.lib.optional (isPy27) futures;
+
+ doCheck = false;
+
+ meta = with stdenv.lib; {
+ description = "Microsoft Azure Storage Blob Client Library for Python";
+ homepage = https://github.com/Azure/azure-storage-python;
+ license = licenses.mit;
+ maintainers = with maintainers; [ stesie ];
+ };
+}