Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / azure-mgmt-databoxedge / default.nix
blob7c76daf619d54e1d207cb3d93be4736fff653baa
1 { lib, buildPythonPackage, fetchPypi
2 , msrestazure
3 , azure-common
4 , azure-mgmt-core
5 }:
7 buildPythonPackage rec {
8   pname = "azure-mgmt-databoxedge";
9   version = "1.0.0";
11   src = fetchPypi {
12     inherit pname version;
13     extension = "zip";
14     sha256 = "04090062bc1e8f00c2f45315a3bceb0fb3b3479ec1474d71b88342e13499b087";
15   };
17   propagatedBuildInputs = [
18     msrestazure
19     azure-common
20     azure-mgmt-core
21   ];
23   # no tests in pypi tarball
24   doCheck = false;
26   pythonImportsCheck = [ "azure.mgmt.databoxedge" ];
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   };