about summary refs log tree commit diff
path: root/pkgs/development/python-modules/azure-mgmt-applicationinsights
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2020-02-10 14:31:10 -0800
committerJon <jonringer@users.noreply.github.com>2020-02-10 16:45:11 -0800
commit17377f441ce80970b4a0afc7726ed5c6c251c6f6 (patch)
tree5bf773f926bc14542ed6d2329b042770a979968c /pkgs/development/python-modules/azure-mgmt-applicationinsights
parent70580587de5abd5d4b4461da565f68f9ba8ce6d8 (diff)
python3Packages.azure-mgmt-applicationinsights: fix build
Diffstat (limited to 'pkgs/development/python-modules/azure-mgmt-applicationinsights')
-rw-r--r--pkgs/development/python-modules/azure-mgmt-applicationinsights/default.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/azure-mgmt-applicationinsights/default.nix b/pkgs/development/python-modules/azure-mgmt-applicationinsights/default.nix
index 0a485f05f9107..274cb181d2d2c 100644
--- a/pkgs/development/python-modules/azure-mgmt-applicationinsights/default.nix
+++ b/pkgs/development/python-modules/azure-mgmt-applicationinsights/default.nix
@@ -28,8 +28,7 @@ buildPythonPackage rec {
   ];
 
   postInstall = lib.optionalString isPy3k ''
-    rm $out/${python.sitePackages}/azure/__init__.py
-    rm $out/${python.sitePackages}/azure/mgmt/__init__.py
+    rm -f $out/${python.sitePackages}/azure/{,mgmt/}__init__.py
   '';
 
   # has no tests
@@ -39,6 +38,6 @@ buildPythonPackage rec {
     description = "This is the Microsoft Azure Application Insights Management Client Library";
     homepage = "https://github.com/Azure/azure-sdk-for-python";
     license = licenses.mit;
-    maintainers = with maintainers; [ mwilsoninsight ];
+    maintainers = with maintainers; [ jonringer mwilsoninsight ];
   };
 }