1{ lib
2, azure-common
3, azure-mgmt-core
4, buildPythonPackage
5, fetchPypi
6, isodate
7, pythonOlder
8, typing-extensions
9}:
10
11buildPythonPackage rec {
12 pname = "azure-mgmt-maps";
13 version = "2.1.0";
14 format = "setuptools";
15
16 disabled = pythonOlder "3.7";
17
18 src = fetchPypi {
19 inherit pname version;
20 hash = "sha256-XVaml4UuVBanYYHxjB1YT/PvExzgAPbD4gI3Hbc0dI0=";
21 };
22
23 propagatedBuildInputs = [
24 isodate
25 azure-common
26 azure-mgmt-core
27 ] ++ lib.optionals (pythonOlder "3.8") [
28 typing-extensions
29 ];
30
31 pythonNamespaces = [
32 "azure.mgmt"
33 ];
34
35 # Module has no tests
36 doCheck = false;
37
38 pythonImportsCheck = [
39 "azure.mgmt.maps"
40 ];
41
42 meta = with lib; {
43 description = "This is the Microsoft Azure Maps Client Library";
44 homepage = "https://github.com/Azure/azure-sdk-for-python";
45 changelog = "https://github.com/Azure/azure-sdk-for-python/blob/v${version}/sdk/maps/azure-mgmt-maps/CHANGELOG.md";
46 license = licenses.mit;
47 maintainers = with maintainers; [ maxwilson ];
48 };
49}