summary refs log tree commit diff
path: root/pkgs/development/python-modules/azure-keyvault-secrets
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2019-12-20 21:09:23 -0800
committerFrederik Rietdijk <fridh@fridh.nl>2019-12-30 16:46:49 +0100
commit4596a70fc48f3099c5540fe764fee98fe3884a80 (patch)
tree81132ccda434a0e433710473d78aab190fe7801a /pkgs/development/python-modules/azure-keyvault-secrets
parent9476c5a0b02be9e7c8713ef54404ad98dd89ade3 (diff)
downloadnixpkgs-4596a70fc48f3099c5540fe764fee98fe3884a80.tar
nixpkgs-4596a70fc48f3099c5540fe764fee98fe3884a80.tar.gz
nixpkgs-4596a70fc48f3099c5540fe764fee98fe3884a80.tar.bz2
nixpkgs-4596a70fc48f3099c5540fe764fee98fe3884a80.tar.lz
nixpkgs-4596a70fc48f3099c5540fe764fee98fe3884a80.tar.xz
nixpkgs-4596a70fc48f3099c5540fe764fee98fe3884a80.tar.zst
nixpkgs-4596a70fc48f3099c5540fe764fee98fe3884a80.zip
python3Packages.azure-keyvault-secrets: init at 4.0.0
Diffstat (limited to 'pkgs/development/python-modules/azure-keyvault-secrets')
-rw-r--r--pkgs/development/python-modules/azure-keyvault-secrets/default.nix33
1 files changed, 33 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/azure-keyvault-secrets/default.nix b/pkgs/development/python-modules/azure-keyvault-secrets/default.nix
new file mode 100644
index 00000000000..e2b40c29d85
--- /dev/null
+++ b/pkgs/development/python-modules/azure-keyvault-secrets/default.nix
@@ -0,0 +1,33 @@
+{ lib, buildPythonPackage, fetchPypi, isPy27
+, azure-common
+, azure-core
+, msrest
+}:
+
+buildPythonPackage rec {
+  pname = "azure-keyvault-secrets";
+  version = "4.0.0";
+  disabled = isPy27;
+
+  src = fetchPypi {
+    inherit pname version;
+    extension = "zip";
+    sha256 = "066p4x2ixasz6qbxss2ilchl73w1kh2nc32lgh8qygl3d90059lp";
+  };
+
+  propagatedBuildInputs = [
+    azure-common
+    azure-core
+    msrest
+  ];
+
+  # requires checkout from mono-repo
+  doCheck = false;
+
+  meta = with lib; {
+    description = "Microsoft Azure Key Vault Secrets Client Library for Python";
+    homepage = "https://github.com/Azure/azure-sdk-for-python";
+    license = licenses.mit;
+    maintainers = with maintainers; [ jonringer ];
+  };
+}