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