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