pythonPackages.azure-mgmt-batch: init at 6.0.0
This commit is contained in:
parent
4a9487c0f0
commit
c156da6fea
38
pkgs/development/python-modules/azure-mgmt-batch/default.nix
Normal file
38
pkgs/development/python-modules/azure-mgmt-batch/default.nix
Normal file
@ -0,0 +1,38 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, msrest
|
||||
, msrestazure
|
||||
, azure-common
|
||||
, azure-mgmt-nspkg
|
||||
, isPy3k
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "azure-mgmt-batch";
|
||||
version = "6.0.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
extension = "zip";
|
||||
sha256 = "dc929d2a0a65804c28a75dc00bb84ba581f805582a09238f4e7faacb15f8a2a3";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
msrest
|
||||
msrestazure
|
||||
azure-common
|
||||
] ++ lib.optionals (!isPy3k) [
|
||||
azure-mgmt-nspkg
|
||||
];
|
||||
|
||||
# has no tests
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "This is the Microsoft Azure Batch Management Client Library";
|
||||
homepage = https://github.com/Azure/sdk-for-python/tree/master/azure-mgmt-batch;
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ mwilsoninsight ];
|
||||
};
|
||||
}
|
@ -284,6 +284,8 @@ in {
|
||||
|
||||
azure-mgmt-authorization = callPackage ../development/python-modules/azure-mgmt-authorization { };
|
||||
|
||||
azure-mgmt-batch = callPackage ../development/python-modules/azure-mgmt-batch { };
|
||||
|
||||
azure-mgmt-common = callPackage ../development/python-modules/azure-mgmt-common { };
|
||||
|
||||
azure-mgmt-compute = callPackage ../development/python-modules/azure-mgmt-compute { };
|
||||
|
Loading…
Reference in New Issue
Block a user