Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / azure-mgmt-servicelinker / default.nix
blob83916038d99614b2b2e7a31602e37ab62f20965f
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , azure-common
5 , azure-mgmt-core
6 , msrest
7 }:
9 buildPythonPackage rec {
10   pname = "azure-mgmt-servicelinker";
11   version = "1.1.0";
13   src = fetchPypi {
14     inherit pname version;
15     hash = "sha256-QVw6Y9HachwBRwCbF0cSGLCAkSJtNnXBvsj5YX1TmJU=";
16     extension = "zip";
17   };
19   propagatedBuildInputs = [
20     azure-common
21     azure-mgmt-core
22     msrest
23   ];
25   pythonImportsCheck = [ "azure.mgmt.servicelinker" ];
27   # no tests with sdist
28   doCheck = false;
30   meta = with lib; {
31     description = "Microsoft Azure Servicelinker Management Client Library for Python";
32     homepage = "https://github.com/Azure/azure-sdk-for-python";
33     license = licenses.mit;
34     maintainers = with maintainers; [ jonringer ];
35   };