{ lib , buildPythonPackage , fetchPypi , python , isPy3k , msrest , msrestazure , azure-common , azure-mgmt-nspkg }: buildPythonPackage rec { pname = "azure-mgmt-datamigration"; version = "4.0.0"; src = fetchPypi { inherit pname version; extension = "zip"; sha256 = "1efda568d67af911156591eb308432b5f9a56075b57ac0a5dd9f7aee17d79217"; }; propagatedBuildInputs = [ msrest msrestazure azure-common ] ++ lib.optionals (!isPy3k) [ azure-mgmt-nspkg ]; # still needed when overriding to previous versions # E.g. azure-cli postInstall = lib.optionalString isPy3k '' rm -f $out/${python.sitePackages}/azure/{,mgmt/}__init__.py ''; # has no tests doCheck = false; meta = with lib; { description = "This is the Microsoft Azure Data Migration Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python"; license = licenses.mit; maintainers = with maintainers; [ jonringer mwilsoninsight ]; }; }