blob: 8325fc3f799ce70d83b8b7f2e58d09d168deaf47 (
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
|
{ stdenv, buildPythonPackage, fetchPypi
, azure-cli-command-modules-nspkg
, azure-cli-core
, azure-mgmt-redis
}:
buildPythonPackage rec {
pname = "azure_cli_redis";
version = "0.3.2";
format = "wheel";
src = fetchPypi {
inherit pname version format;
sha256 = "0z7bzfc23af1jf9wnim0nfqyb8sx5ah9xfg1rs2r8sfgx0ab0k12";
};
propagatedBuildInputs = [
azure-cli-command-modules-nspkg
azure-cli-core
azure-mgmt-redis
];
doCheck = false;
meta = with stdenv.lib; {
description = "Microsoft Azure Command-Line Tools Redis Command Module";
homepage = https://github.com/Azure/azure-cli;
license = licenses.mit;
maintainers = with maintainers; [ stesie ];
};
}
|