about summary refs log tree commit diff
path: root/pkgs/development/python-modules/azure-mgmt-media
diff options
context:
space:
mode:
authorMax Wilson <max.wilson@insight.com>2019-04-29 18:50:48 -0400
committerWael M. Nasreddine <wael.nasreddine@gmail.com>2019-07-16 14:54:22 -0700
commit92425a94b1536054e97cfcf78674a783fa990435 (patch)
treefd9672683b09bc9cc4382a4d798c0bf440c6114b /pkgs/development/python-modules/azure-mgmt-media
parentf0a784a83f49f69f77b4a9092022c6ef5c180035 (diff)
pythonPackages.azure-mgmt-media: init at 1.1.1
Diffstat (limited to 'pkgs/development/python-modules/azure-mgmt-media')
-rw-r--r--pkgs/development/python-modules/azure-mgmt-media/default.nix38
1 files changed, 38 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/azure-mgmt-media/default.nix b/pkgs/development/python-modules/azure-mgmt-media/default.nix
new file mode 100644
index 0000000000000..5061fa90ae811
--- /dev/null
+++ b/pkgs/development/python-modules/azure-mgmt-media/default.nix
@@ -0,0 +1,38 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, msrest
+, msrestazure
+, azure-common
+, azure-mgmt-nspkg
+, isPy3k
+}:
+
+buildPythonPackage rec {
+  pname = "azure-mgmt-media";
+  version = "1.1.1";
+
+  src = fetchPypi {
+    inherit pname version;
+    extension = "zip";
+    sha256 = "5d0c6b3a0f882dde8ae3d42467f03ea6c4e3f62613936087d54c67e6f504939b";
+  };
+
+  propagatedBuildInputs = [
+    msrest
+    msrestazure
+    azure-common
+  ] ++ lib.optionals (!isPy3k) [
+    azure-mgmt-nspkg
+  ];
+
+  # has no tests
+  doCheck = false;
+
+  meta = with lib; {
+    description = "This is the Microsoft Azure Media Services Client Library";
+    homepage = https://docs.microsoft.com/en-us/python/api/overview/azure/media-services?view=azure-python;
+    license = licenses.mit;
+    maintainers = with maintainers; [ mwilsoninsight ];
+  };
+}