41 lines
880 B
Nix
41 lines
880 B
Nix
|
{ lib
|
||
|
, buildPythonPackage
|
||
|
, fetchPypi
|
||
|
, pythonOlder
|
||
|
, azure-common
|
||
|
, azure-mgmt-core
|
||
|
, msrest
|
||
|
, msrestazure
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
version = "2.0.0";
|
||
|
pname = "azure-mgmt-appcontainers";
|
||
|
disabled = pythonOlder "3.7";
|
||
|
|
||
|
src = fetchPypi {
|
||
|
inherit pname version;
|
||
|
sha256 = "sha256-ccdIdvdgTYPWEZCWqkLc8lEuMuAEERvl5B1huJyBkvU=";
|
||
|
extension = "zip";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [
|
||
|
azure-common
|
||
|
azure-mgmt-core
|
||
|
msrest
|
||
|
msrestazure
|
||
|
];
|
||
|
|
||
|
# no tests included
|
||
|
doCheck = false;
|
||
|
|
||
|
pythonImportsCheck = [ "azure.mgmt.appcontainers" ];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Microsoft Azure Appcontainers Management Client Library for Python";
|
||
|
homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/appcontainers/azure-mgmt-appcontainers";
|
||
|
license = licenses.mit;
|
||
|
maintainers = with maintainers; [ jfroche ];
|
||
|
};
|
||
|
}
|