pythonPackages.azure-batch: init at 6.0.1
This commit is contained in:
parent
a18f5138e1
commit
7ca7dfcd2c
34
pkgs/development/python-modules/azure-batch/default.nix
Normal file
34
pkgs/development/python-modules/azure-batch/default.nix
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, msrest
|
||||||
|
, azure-common
|
||||||
|
, msrestazure
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "azure-batch";
|
||||||
|
version = "6.0.1";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
extension = "zip";
|
||||||
|
sha256 = "d5b0de3db0058cd69baf30e059874094abf865e24ccd82e3cd25f3a48b9676d1";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
msrest
|
||||||
|
msrestazure
|
||||||
|
azure-common
|
||||||
|
];
|
||||||
|
|
||||||
|
# has no tests
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "This is the Microsoft Azure Batch Client Library";
|
||||||
|
homepage = https://docs.microsoft.com/en-us/python/api/overview/azure/batch?view=azure-python;
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ mwilsoninsight ];
|
||||||
|
};
|
||||||
|
}
|
@ -244,6 +244,8 @@ in {
|
|||||||
|
|
||||||
azure-applicationinsights = callPackage ../development/python-modules/azure-applicationinsights { };
|
azure-applicationinsights = callPackage ../development/python-modules/azure-applicationinsights { };
|
||||||
|
|
||||||
|
azure-batch = callPackage ../development/python-modules/azure-batch { };
|
||||||
|
|
||||||
azure-mgmt-common = callPackage ../development/python-modules/azure-mgmt-common { };
|
azure-mgmt-common = callPackage ../development/python-modules/azure-mgmt-common { };
|
||||||
|
|
||||||
azure-mgmt-compute = callPackage ../development/python-modules/azure-mgmt-compute { };
|
azure-mgmt-compute = callPackage ../development/python-modules/azure-mgmt-compute { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user