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