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