pythonPackages.azure-mgmt-datalake-store: fix python3 namespace

This commit is contained in:
Jonathan Ringer 2019-10-24 01:01:27 -07:00 committed by Jon
parent 364794c91e
commit 4ee07c6428

View File

@ -1,6 +1,8 @@
{ lib
, buildPythonPackage
, fetchPypi
, python
, isPy3k
, msrestazure
, azure-common
, azure-mgmt-datalake-nspkg
@ -22,6 +24,12 @@ buildPythonPackage rec {
azure-mgmt-datalake-nspkg
];
postInstall = lib.optionalString isPy3k ''
rm $out/${python.sitePackages}/azure/__init__.py
rm $out/${python.sitePackages}/azure/mgmt/__init__.py
rm $out/${python.sitePackages}/azure/mgmt/datalake/__init__.py
'';
# has no tests
doCheck = false;
@ -29,6 +37,6 @@ buildPythonPackage rec {
description = "This is the Microsoft Azure Data Lake Store Management Client Library";
homepage = "https://github.com/Azure/azure-sdk-for-python";
license = licenses.mit;
maintainers = with maintainers; [ mwilsoninsight ];
maintainers = with maintainers; [ jonringer mwilsoninsight ];
};
}