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