blob: a0fdd98b50cd30f98637fa968789a7f8fe8365ed (
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-common
, azure-mgmt-nspkg
, msrest
, msrestazure
}:
buildPythonPackage rec {
pname = "azure_mgmt_containerregistry";
version = "2.0.0";
format = "wheel";
src = fetchPypi {
inherit pname version format;
sha256 = "1ic6n9idxz8qpykkr26m6lxn8idd8wbi128261ghnh9anrn3ikrn";
};
propagatedBuildInputs = [
azure-common
azure-mgmt-nspkg
msrest
msrestazure
];
doCheck = false;
meta = with stdenv.lib; {
description = "Microsoft Azure Container Registry Client Library for Python";
homepage = https://github.com/Azure/azure-sdk-for-python;
license = licenses.mit;
maintainers = with maintainers; [ stesie ];
};
}
|