summary refs log tree commit diff
path: root/pkgs/development/python-modules/azure-mgmt-botservice
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2019-10-22 22:37:37 -0700
committerJon <jonringer@users.noreply.github.com>2019-11-23 19:47:04 -0800
commit8354b5c7a9bc3ee5ed0a7e379fcc269194e36bd2 (patch)
tree0eec2f0f376fabc1e869da42dca864c59eb12183 /pkgs/development/python-modules/azure-mgmt-botservice
parentc30c8834845e71f80ecc8b33ec8b374baa22aea4 (diff)
downloadnixpkgs-8354b5c7a9bc3ee5ed0a7e379fcc269194e36bd2.tar
nixpkgs-8354b5c7a9bc3ee5ed0a7e379fcc269194e36bd2.tar.gz
nixpkgs-8354b5c7a9bc3ee5ed0a7e379fcc269194e36bd2.tar.bz2
nixpkgs-8354b5c7a9bc3ee5ed0a7e379fcc269194e36bd2.tar.lz
nixpkgs-8354b5c7a9bc3ee5ed0a7e379fcc269194e36bd2.tar.xz
nixpkgs-8354b5c7a9bc3ee5ed0a7e379fcc269194e36bd2.tar.zst
nixpkgs-8354b5c7a9bc3ee5ed0a7e379fcc269194e36bd2.zip
python3Packages.azure-mgmt-botservice: init at 0.2.0
Diffstat (limited to 'pkgs/development/python-modules/azure-mgmt-botservice')
-rw-r--r--pkgs/development/python-modules/azure-mgmt-botservice/default.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/azure-mgmt-botservice/default.nix b/pkgs/development/python-modules/azure-mgmt-botservice/default.nix
new file mode 100644
index 00000000000..d9375942b4d
--- /dev/null
+++ b/pkgs/development/python-modules/azure-mgmt-botservice/default.nix
@@ -0,0 +1,31 @@
+{ lib, buildPythonPackage, fetchPypi, isPy27
+, azure-common
+, msrest
+, msrestazure
+}:
+
+buildPythonPackage rec {
+  version = "0.2.0";
+  pname = "azure-mgmt-botservice";
+  disabled = isPy27;
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "10sxllwvybjlp35h5mjdxhkw2wzpl4b03i08p4jnv8cswrc8h7dj";
+    extension = "zip";
+  };
+
+  propagatedBuildInputs = [ azure-common msrest msrestazure ];
+
+  # no tests included
+  doCheck = false;
+
+  pythonImportsCheck = [ "azure.common" "azure.mgmt.botservice" ];
+
+  meta = with lib; {
+    description = "Microsoft Azure API Management Client Library for Python";
+    homepage = "https://github.com/Azure/azure-sdk-for-python";
+    license = licenses.mit;
+    maintainers = with maintainers; [ jonringer ];
+  };
+}