diff options
Diffstat (limited to 'pkgs/development/python-modules/azure-cli-dms')
-rw-r--r-- | pkgs/development/python-modules/azure-cli-dms/default.nix | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/azure-cli-dms/default.nix b/pkgs/development/python-modules/azure-cli-dms/default.nix new file mode 100644 index 0000000..b6b41ab --- /dev/null +++ b/pkgs/development/python-modules/azure-cli-dms/default.nix @@ -0,0 +1,33 @@ +{ 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 ]; + }; +} |