python311Packages.azure-mgmt-compute: refactor
This commit is contained in:
parent
10e49eb22a
commit
e0faedcb21
1 changed files with 9 additions and 7 deletions
|
@ -5,27 +5,29 @@
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, isodate
|
, isodate
|
||||||
, pythonOlder
|
, pythonOlder
|
||||||
, typing-extensions
|
, setuptools
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "azure-mgmt-compute";
|
pname = "azure-mgmt-compute";
|
||||||
version = "31.0.0";
|
version = "31.0.0";
|
||||||
format = "setuptools";
|
pyproject = true;
|
||||||
|
|
||||||
disabled = pythonOlder "3.7";
|
disabled = pythonOlder "3.8";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
hash = "sha256-WlscT8GhnssCKhLe0b6LGxVfaXnQP7nvwEZC9gZkS78=";
|
hash = "sha256-WlscT8GhnssCKhLe0b6LGxVfaXnQP7nvwEZC9gZkS78=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
build-system = [
|
||||||
|
setuptools
|
||||||
|
];
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
azure-mgmt-common
|
azure-mgmt-common
|
||||||
azure-mgmt-core
|
azure-mgmt-core
|
||||||
isodate
|
isodate
|
||||||
] ++ lib.optionals (pythonOlder "3.8") [
|
|
||||||
typing-extensions
|
|
||||||
];
|
];
|
||||||
|
|
||||||
pythonNamespaces = [
|
pythonNamespaces = [
|
||||||
|
@ -41,7 +43,7 @@ buildPythonPackage rec {
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "This is the Microsoft Azure Compute Management Client Library";
|
description = "This is the Microsoft Azure Compute Management Client Library";
|
||||||
homepage = "https://github.com/Azure/azure-sdk-for-python";
|
homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/compute/azure-mgmt-compute";
|
||||||
changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-compute_${version}/sdk/compute/azure-mgmt-compute/CHANGELOG.md";
|
changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-compute_${version}/sdk/compute/azure-mgmt-compute/CHANGELOG.md";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ olcai maxwilson ];
|
maintainers = with maintainers; [ olcai maxwilson ];
|
||||||
|
|
Loading…
Reference in a new issue