ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / azure-keyvault-nspkg / default.nix
blobfd3f3c0284f975c59ed6c1101b1a4638bf399fe6
1 { buildPythonPackage
2 , fetchPypi
3 , lib
5 # pythonPackages
6 , azure-nspkg
7 }:
9 buildPythonPackage rec {
10   pname = "azure-keyvault-nspkg";
11   version = "1.0.0";
13   src = fetchPypi {
14     inherit pname version;
15     extension = "zip";
16     sha256 = "0hdnd6124hx7s16z1pssmq5m5mqqqz8s38ixl9aayv4wmf5bhs5c";
17   };
19   propagatedBuildInputs = [
20     azure-nspkg
21   ];
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;
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   };