1{
2 pkgs,
3 buildPythonPackage,
4 fetchPypi,
5 azure-core,
6 typing-extensions,
7}:
8
9buildPythonPackage rec {
10 version = "1.6.0";
11 format = "setuptools";
12 pname = "azure-mgmt-core";
13
14 src = fetchPypi {
15 pname = "azure_mgmt_core";
16 inherit version;
17 extension = "tar.gz";
18 hash = "sha256-smIyr4V7Ah5h2BPZ9K5TBGUlXLELPd6UWtN0P3pY55w=";
19 };
20
21 propagatedBuildInputs = [
22 azure-core
23 typing-extensions
24 ];
25
26 pythonNamespaces = "azure.mgmt";
27
28 # not included
29 doCheck = false;
30
31 pythonImportsCheck = [
32 "azure.mgmt.core"
33 "azure.core"
34 ];
35
36 meta = with pkgs.lib; {
37 description = "Microsoft Azure Management Core Library for Python";
38 homepage = "https://github.com/Azure/azure-sdk-for-python";
39 license = licenses.mit;
40 maintainers = [ ];
41 };
42}