{ stdenv, buildPythonPackage, fetchPypi , azure-cli-command-modules-nspkg , azure-cli-core , azure-mgmt-datamigration , pyopenssl }: buildPythonPackage rec { pname = "azure_cli_dms"; version = "0.1.0"; format = "wheel"; src = fetchPypi { inherit pname version format; sha256 = "043m110l4kw522d4ahyij6ma2c52c17p70rdd6x1h75k9mzdf5x0"; }; propagatedBuildInputs = [ azure-cli-command-modules-nspkg azure-cli-core azure-mgmt-datamigration pyopenssl ]; doCheck = false; meta = with stdenv.lib; { description = "Microsoft Azure Command-Line Tools for the Data Migration Service (DMS) Command Module"; homepage = https://github.com/Azure/azure-cli; license = licenses.mit; maintainers = with maintainers; [ stesie ]; }; }