summary refs log tree commit diff
path: root/pkgs/development/python-modules/azure-keyvault-administration
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2020-09-28 10:51:32 -0700
committerJon <jonringer@users.noreply.github.com>2020-09-29 06:00:43 -0700
commit61ae2b47155c990bf2e696a9736e5e74e51c7363 (patch)
tree100a847645e0596d1905651f5d15928277fd9ab7 /pkgs/development/python-modules/azure-keyvault-administration
parent156acc6f9779a829acd5f42e37fac491bcc4f61f (diff)
downloadnixpkgs-61ae2b47155c990bf2e696a9736e5e74e51c7363.tar
nixpkgs-61ae2b47155c990bf2e696a9736e5e74e51c7363.tar.gz
nixpkgs-61ae2b47155c990bf2e696a9736e5e74e51c7363.tar.bz2
nixpkgs-61ae2b47155c990bf2e696a9736e5e74e51c7363.tar.lz
nixpkgs-61ae2b47155c990bf2e696a9736e5e74e51c7363.tar.xz
nixpkgs-61ae2b47155c990bf2e696a9736e5e74e51c7363.tar.zst
nixpkgs-61ae2b47155c990bf2e696a9736e5e74e51c7363.zip
python3Packages.azure-keyvault-administration: init at 4.0.0b1
Diffstat (limited to 'pkgs/development/python-modules/azure-keyvault-administration')
-rw-r--r--pkgs/development/python-modules/azure-keyvault-administration/default.nix37
1 files changed, 37 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/azure-keyvault-administration/default.nix b/pkgs/development/python-modules/azure-keyvault-administration/default.nix
new file mode 100644
index 00000000000..e72dc036989
--- /dev/null
+++ b/pkgs/development/python-modules/azure-keyvault-administration/default.nix
@@ -0,0 +1,37 @@
+{ lib, buildPythonPackage, fetchPypi, isPy27
+, azure-common
+, azure-core
+, msrest
+}:
+
+buildPythonPackage rec {
+  pname = "azure-keyvault-administration";
+  version = "4.0.0b1";
+  disabled = isPy27;
+
+  src = fetchPypi {
+    inherit pname version;
+    extension = "zip";
+    sha256 = "1kmf2x3jdmfm9c7ldvajzckkm79gxxvl1l2968lizjwiyjbbsih5";
+  };
+
+  propagatedBuildInputs = [
+    azure-common
+    azure-core
+    msrest
+  ];
+
+  # no tests in pypi tarball
+  doCheck = false;
+
+  pythonNamespaces = [ "azure.keyvault" ];
+
+  pythonImportsCheck = [ "azure.keyvault.administration" ];
+
+  meta = with lib; {
+    description = "Microsoft Azure Key Vault Administration Client Library for Python";
+    homepage = "https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/keyvault/azure-keyvault-administration";
+    license = licenses.mit;
+    maintainers = with maintainers; [ jonringer ];
+  };
+}