Skip to content

Commit

Permalink
python3Packages.azure-mgmt-automation: init at 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wfdewith committed Oct 29, 2024
1 parent 7fd00f3 commit 05360bb
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
38 changes: 38 additions & 0 deletions pkgs/development/python-modules/azure-mgmt-automation/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{
lib,
buildPythonPackage,
fetchPypi,
msrest,
azure-common,
azure-mgmt-core,
}:

buildPythonPackage rec {
pname = "azure-mgmt-automation";
version = "1.0.0";
format = "setuptools";

src = fetchPypi {
inherit pname version;
extension = "zip";
hash = "sha256-pJ0tQT/vVwEMs2Fh5bwFZgG418bQW9PLBaE1Eu8pHh4=";
};

propagatedBuildInputs = [
msrest
azure-common
azure-mgmt-core
];

# has no tests
doCheck = false;

pythonImportsCheck = [ "azure.mgmt.automation" ];

meta = with lib; {
description = "This is the Microsoft Azure Automation Client Library";
homepage = "https://github.com/Azure/azure-sdk-for-python";
license = licenses.mit;
maintainers = with maintainers; [ wfdewith ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -1175,6 +1175,8 @@ self: super: with self; {

azure-mgmt-authorization = callPackage ../development/python-modules/azure-mgmt-authorization { };

azure-mgmt-automation = callPackage ../development/python-modules/azure-mgmt-automation { };

azure-mgmt-batchai = callPackage ../development/python-modules/azure-mgmt-batchai { };

azure-mgmt-batch = callPackage ../development/python-modules/azure-mgmt-batch { };
Expand Down

0 comments on commit 05360bb

Please sign in to comment.