2020-05-03 17:38:23 +00:00
|
|
|
{ lib
|
|
|
|
, azure-common
|
2021-05-28 09:39:13 +00:00
|
|
|
, azure-mgmt-core
|
2023-10-09 19:29:22 +00:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, isodate
|
|
|
|
, pythonOlder
|
|
|
|
, typing-extensions
|
2020-05-03 17:38:23 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "azure-mgmt-redhatopenshift";
|
2023-10-19 13:55:26 +00:00
|
|
|
version = "1.4.0";
|
2023-10-09 19:29:22 +00:00
|
|
|
format = "setuptools";
|
|
|
|
|
|
|
|
disabled = pythonOlder "3.7";
|
2020-05-03 17:38:23 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2023-10-19 13:55:26 +00:00
|
|
|
hash = "sha256-BL2a2L2AwJWvs0V+VpSGaS8//AWMy5m6rdAPDJPbrEo=";
|
2020-05-03 17:38:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
2023-10-09 19:29:22 +00:00
|
|
|
isodate
|
2020-05-03 17:38:23 +00:00
|
|
|
azure-common
|
2021-05-28 09:39:13 +00:00
|
|
|
azure-mgmt-core
|
2023-10-09 19:29:22 +00:00
|
|
|
] ++ lib.optionals (pythonOlder "3.8") [
|
|
|
|
typing-extensions
|
2020-05-03 17:38:23 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
pythonNamespaces = "azure.mgmt";
|
|
|
|
|
2023-10-09 19:29:22 +00:00
|
|
|
# Module has no tests
|
2020-05-03 17:38:23 +00:00
|
|
|
doCheck = false;
|
|
|
|
|
2023-10-09 19:29:22 +00:00
|
|
|
pythonImportsCheck = [
|
|
|
|
"azure.mgmt.redhatopenshift"
|
|
|
|
];
|
2020-05-03 17:38:23 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Microsoft Azure Red Hat Openshift Management Client Library for Python";
|
|
|
|
homepage = "https://github.com/Azure/azure-sdk-for-python";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ jonringer ];
|
|
|
|
};
|
|
|
|
}
|