{ stdenv, buildPythonPackage, fetchPypi , azure-common , azure-mgmt-nspkg , msrestazure }: buildPythonPackage rec { pname = "azure-mgmt-storage"; version = "1.5.0"; src = fetchPypi { inherit pname version; extension = "zip"; sha256 = "189526acwqclnq2mrjlldi9xd0amja7n2bg1zxfy7pji60lkmz5i"; }; # 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-mgmt-nspkg msrestazure ]; doCheck = false; meta = with stdenv.lib; { description = "Microsoft Azure Storage Management Client Library for Python"; homepage = https://github.com/Azure/azure-sdk-for-python; license = licenses.mit; maintainers = with maintainers; [ olcai stesie ]; }; }