{ stdenv, buildPythonPackage, fetchPypi , azure-common , azure-mgmt-nspkg , msrestazure }: buildPythonPackage rec { pname = "azure-mgmt-reservations"; version = "0.2.1"; src = fetchPypi { inherit pname version; extension = "zip"; sha256 = "0wf1da3f4w3yalkylxv5ifq1bpsyk26j77v4ha0phyn400vqlqa0"; }; propagatedBuildInputs = [ azure-common azure-mgmt-nspkg msrestazure ]; doCheck = false; meta = with stdenv.lib; { description = "Microsoft Azure Reservations Client Library for Python"; homepage = https://github.com/Azure/azure-sdk-for-python; license = licenses.mit; maintainers = with maintainers; [ stesie ]; }; }