Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / azure-mgmt-containerregistry / default.nix
blobbc20dcdfb602066f6ee8fbc1dfda667609e70b16
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pythonOlder
5 , azure-common
6 , azure-mgmt-core
7 , isodate
8 }:
10 buildPythonPackage rec {
11   pname = "azure-mgmt-containerregistry";
12   version = "10.2.0";
13   format = "setuptools";
15   disabled = pythonOlder "3.8";
17   src = fetchPypi {
18     inherit pname version;
19     hash = "sha256-i7i/5ofGxiF9/wTAPnUOaZ6FAgK3EaBqoHeSC8HuXCo=";
20   };
22   propagatedBuildInputs = [
23     azure-common
24     azure-mgmt-core
25     isodate
26   ];
28   # no tests included
29   doCheck = false;
31   pythonImportsCheck = [
32     "azure.common"
33     "azure.mgmt.containerregistry"
34   ];
36   meta = with lib; {
37     description = "Microsoft Azure Container Registry Client Library for Python";
38     homepage = "https://github.com/Azure/azure-sdk-for-python";
39     changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-containerregistry_${version}/sdk/containerregistry/azure-mgmt-containerregistry/CHANGELOG.md";
40     license = licenses.mit;
41     maintainers = with maintainers; [ jonringer ];
42   };