1{
2 lib,
3 azure-common,
4 azure-mgmt-core,
5 buildPythonPackage,
6 fetchPypi,
7 isodate,
8 setuptools,
9 typing-extensions,
10}:
11
12buildPythonPackage rec {
13 pname = "azure-mgmt-datamigration";
14 version = "10.1.0";
15 pyproject = true;
16
17 src = fetchPypi {
18 pname = "azure_mgmt_datamigration";
19 inherit version;
20 hash = "sha256-wo748WK5RaTLUAZASjA3QcJG8DMSSeYB0V6h/c6VxUo=";
21 };
22
23 build-system = [ setuptools ];
24
25 dependencies = [
26 azure-common
27 azure-mgmt-core
28 isodate
29 typing-extensions
30 ];
31
32 pythonNamespaces = [ "azure.mgmt" ];
33
34 # has no tests
35 doCheck = false;
36
37 meta = with lib; {
38 description = "This is the Microsoft Azure Data Migration Client Library";
39 homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/datamigration/azure-mgmt-datamigration";
40 license = licenses.mit;
41 maintainers = with maintainers; [ maxwilson ];
42 };
43}