nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 azure-common,
4 azure-mgmt-core,
5 buildPythonPackage,
6 fetchPypi,
7 isodate,
8}:
9
10buildPythonPackage rec {
11 pname = "azure-mgmt-redis";
12 version = "14.5.0";
13 format = "setuptools";
14
15 src = fetchPypi {
16 inherit version;
17 pname = "azure_mgmt_redis";
18 hash = "sha256-XDQ0yCSSaI4luTqvURPs/wuSt61toqT9RpVTD4KxUvo=";
19 };
20
21 propagatedBuildInputs = [
22 isodate
23 azure-common
24 azure-mgmt-core
25 ];
26
27 # Module has no tests
28 doCheck = false;
29
30 pythonImportsCheck = [ "azure.mgmt.redis" ];
31
32 meta = {
33 description = "This is the Microsoft Azure Redis Cache Management Client Library";
34 homepage = "https://github.com/Azure/azure-sdk-for-python";
35 changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-redis_${version}/sdk/redis/azure-mgmt-redis/CHANGELOG.md";
36 license = lib.licenses.mit;
37 maintainers = with lib.maintainers; [ maxwilson ];
38 };
39}