1{ buildPythonPackage
2, fetchPypi
3, lib
4
5# pythonPackages
6, azure-nspkg
7}:
8
9buildPythonPackage rec {
10 pname = "azure-keyvault-nspkg";
11 version = "1.0.0";
12
13 src = fetchPypi {
14 inherit pname version;
15 extension = "zip";
16 sha256 = "0hdnd6124hx7s16z1pssmq5m5mqqqz8s38ixl9aayv4wmf5bhs5c";
17 };
18
19 propagatedBuildInputs = [
20 azure-nspkg
21 ];
22
23 # Just a namespace package, no tests exist:
24 # https://github.com/Azure/azure-sdk-for-python/blob/master/sdk/keyvault/tests.yml
25 doCheck = false;
26
27 meta = with lib; {
28 description = "Microsoft Azure Key Vault Namespace Package [Internal]";
29 homepage = "https://github.com/Azure/azure-sdk-for-python";
30 license = licenses.mit;
31 maintainers = with maintainers; [
32 kamadorueda
33 ];
34 };
35}