Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / azure-mgmt-datamigration / default.nix
blobfe57d5d26cc6b6722cc761ae2dd2292e16ee09cb
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , isPy3k
5 , msrest
6 , msrestazure
7 , azure-common
8 , azure-mgmt-nspkg
9 , azure-mgmt-core
12 buildPythonPackage rec {
13   pname = "azure-mgmt-datamigration";
14   version = "10.0.0";
15   format = "setuptools";
17   src = fetchPypi {
18     inherit pname version;
19     extension = "zip";
20     sha256 = "5cee70f97fe3a093c3cb70c2a190c2df936b772e94a09ef7e3deb1ed177c9f32";
21   };
23   propagatedBuildInputs = [
24     msrest
25     msrestazure
26     azure-common
27     azure-mgmt-core
28   ] ++ lib.optionals (!isPy3k) [
29     azure-mgmt-nspkg
30   ];
32   pythonNamespaces = [ "azure.mgmt" ];
34   # has no tests
35   doCheck = false;
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";
40     license = licenses.mit;
41     maintainers = with maintainers; [ jonringer maxwilson ];
42   };