forked from mirrors/nixpkgs
python3Packages.azure-mgmt-applicationinsight: fix python3 namespace
This commit is contained in:
parent
207046d066
commit
94a2bab032
1 changed files with 6 additions and 0 deletions
|
@ -1,5 +1,6 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, python
|
||||
, fetchPypi
|
||||
, msrest
|
||||
, msrestazure
|
||||
|
@ -26,6 +27,11 @@ buildPythonPackage rec {
|
|||
azure-mgmt-nspkg
|
||||
];
|
||||
|
||||
postInstall = lib.optionalString isPy3k ''
|
||||
rm $out/${python.sitePackages}/azure/__init__.py
|
||||
rm $out/${python.sitePackages}/azure/mgmt/__init__.py
|
||||
'';
|
||||
|
||||
# has no tests
|
||||
doCheck = false;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue