Skip to content

Commit

Permalink
python312Packages.azure-mgmt-reservations: remove msrestazure depende…
Browse files Browse the repository at this point in the history
…ncy (NixOS#362150)
  • Loading branch information
fabaff authored Dec 20, 2024
2 parents dbbaf90 + bf2b5c7 commit 13e90ca
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions pkgs/development/python-modules/azure-mgmt-reservations/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,40 +2,40 @@
lib,
buildPythonPackage,
fetchPypi,
setuptools,
msrest,
msrestazure,
azure-common,
azure-mgmt-core,
typing-extensions,
pythonOlder,
}:

buildPythonPackage rec {
pname = "azure-mgmt-reservations";
version = "2.3.0";
format = "setuptools";

disabled = pythonOlder "3.6";
pyproject = true;

src = fetchPypi {
inherit pname version;
extension = "zip";
hash = "sha256-BHCFEFst5jfyIEo0hm86belpxW7EygZCBJ8PTqzqHKc=";
};

propagatedBuildInputs = [
build-system = [ setuptools ];

dependencies = [
msrest
msrestazure
azure-common
azure-mgmt-core
];
] ++ lib.optionals (pythonOlder "3.8") [ typing-extensions ];

# has no tests
doCheck = false;

meta = with lib; {
meta = {
description = "This is the Microsoft Azure Reservations Client Library";
homepage = "https://github.com/Azure/azure-sdk-for-python";
license = licenses.mit;
maintainers = with maintainers; [ maxwilson ];
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ maxwilson ];
};
}

0 comments on commit 13e90ca

Please sign in to comment.