Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib 2, buildPythonPackage 3, fetchPypi 4, pythonOlder 5, azure-common 6, azure-core 7, msrest 8, six 9}: 10 11buildPythonPackage rec { 12 pname = "azure-keyvault-administration"; 13 version = "4.3.0"; 14 format = "setuptools"; 15 16 disabled = pythonOlder "3.6"; 17 18 src = fetchPypi { 19 inherit pname version; 20 extension = "zip"; 21 hash = "sha256-PuKjui0OP0ODNErjbjJ90hOgee97JDrVT2sh+MufxWY="; 22 }; 23 24 propagatedBuildInputs = [ 25 azure-common 26 azure-core 27 msrest 28 six 29 ]; 30 31 # no tests in pypi tarball 32 doCheck = false; 33 34 pythonNamespaces = [ 35 "azure.keyvault" 36 ]; 37 38 pythonImportsCheck = [ 39 "azure.keyvault.administration" 40 ]; 41 42 meta = with lib; { 43 description = "Microsoft Azure Key Vault Administration Client Library for Python"; 44 homepage = "https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/keyvault/azure-keyvault-administration"; 45 license = licenses.mit; 46 maintainers = with maintainers; [ jonringer ]; 47 }; 48}