1{
2 buildPythonPackage,
3 fetchPypi,
4 lib,
5
6 # pythonPackages
7 azure-nspkg,
8}:
9
10buildPythonPackage rec {
11 pname = "azure-keyvault-nspkg";
12 version = "1.0.0";
13 format = "setuptools";
14
15 src = fetchPypi {
16 inherit pname version;
17 extension = "zip";
18 sha256 = "0hdnd6124hx7s16z1pssmq5m5mqqqz8s38ixl9aayv4wmf5bhs5c";
19 };
20
21 propagatedBuildInputs = [ azure-nspkg ];
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; [ kamadorueda ];
32 };
33}