aboutsummaryrefslogtreecommitdiffstats
path: root/pkgs/development/python-modules/azure-keyvault/default.nix
blob: 58b88e5ff432a989c06d550ae41493ebd75af0df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{ stdenv, buildPythonPackage, fetchPypi
, azure-common
, azure-nspkg
, cryptography
, msrest
, msrestazure
, requests
}:

buildPythonPackage rec {
  pname = "azure_keyvault";
  version = "0.3.7";
  format = "wheel";

  src = fetchPypi {
    inherit pname version format;
    sha256 = "1bx7i5infknjbjvq12x1xwgp6rc3nc4rwnbpg9ggvla5mjkp6wdk";
  };

  propagatedBuildInputs = [
    azure-common
    azure-nspkg
    cryptography
    msrest
    msrestazure
    requests
  ];

  doCheck = false;

  meta = with stdenv.lib; {
    description = "Microsoft Azure Key Vault Client Library for Python";
    homepage = https://github.com/Azure/azure-sdk-for-python;
    license = licenses.mit;
    maintainers = with maintainers; [ stesie ];
  };
}