summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/azure-mgmt-maps/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/azure-mgmt-maps/default.nix')
-rw-r--r--pkgs/development/python-modules/azure-mgmt-maps/default.nix31
1 files changed, 13 insertions, 18 deletions
diff --git a/pkgs/development/python-modules/azure-mgmt-maps/default.nix b/pkgs/development/python-modules/azure-mgmt-maps/default.nix
index 81b216804ae4..2f7dbd1209a2 100644
--- a/pkgs/development/python-modules/azure-mgmt-maps/default.nix
+++ b/pkgs/development/python-modules/azure-mgmt-maps/default.nix
@@ -1,12 +1,13 @@
-{ lib
-, azure-common
-, azure-mgmt-core
-, buildPythonPackage
-, fetchPypi
-, isodate
-, pythonOlder
-, typing-extensions
-, msrest
+{
+ lib,
+ azure-common,
+ azure-mgmt-core,
+ buildPythonPackage,
+ fetchPypi,
+ isodate,
+ pythonOlder,
+ typing-extensions,
+ msrest,
}:
buildPythonPackage rec {
@@ -26,20 +27,14 @@ buildPythonPackage rec {
azure-common
azure-mgmt-core
msrest
- ] ++ lib.optionals (pythonOlder "3.8") [
- typing-extensions
- ];
+ ] ++ lib.optionals (pythonOlder "3.8") [ typing-extensions ];
- pythonNamespaces = [
- "azure.mgmt"
- ];
+ pythonNamespaces = [ "azure.mgmt" ];
# Module has no tests
doCheck = false;
- pythonImportsCheck = [
- "azure.mgmt.maps"
- ];
+ pythonImportsCheck = [ "azure.mgmt.maps" ];
meta = with lib; {
description = "This is the Microsoft Azure Maps Client Library";