blob: dcd2c1f6dbf820f98f091a85329665979e9b284c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
{ stdenv, buildPythonPackage, fetchPypi
, azure-cli-command-modules-nspkg
, azure-cli-core
, azure-mgmt-cosmosdb
, pydocumentdb
}:
buildPythonPackage rec {
pname = "azure_cli_cosmosdb";
version = "0.2.1";
format = "wheel";
src = fetchPypi {
inherit pname version format;
sha256 = "0ki6sc22fy0gy23j8nms2sd0r09gv1m4826mby8xm8wljygzjxpx";
};
propagatedBuildInputs = [
azure-cli-command-modules-nspkg
azure-cli-core
azure-mgmt-cosmosdb
pydocumentdb
];
doCheck = false;
meta = with stdenv.lib; {
description = "Microsoft Azure Command-Line Tools Cosmos DB Command Module";
homepage = https://github.com/Azure/azure-cli;
license = licenses.mit;
maintainers = with maintainers; [ stesie ];
};
}
|