depot/third_party/nixpkgs/pkgs/development/python-modules/azure-batch/default.nix
Default email b55a4ee46f Project import generated by Copybara.
GitOrigin-RevId: e9158eca70ae59e73fae23be5d13d3fa0cfc78b4
2020-12-09 13:39:15 +01:00

34 lines
667 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, msrest
, azure-common
, msrestazure
}:
buildPythonPackage rec {
pname = "azure-batch";
version = "10.0.0";
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "83d7a2b0be42ca456ac2b56fa3dc6ce704c130e888d37d924072c1d3718f32d0";
};
propagatedBuildInputs = [
msrest
msrestazure
azure-common
];
# has no tests
doCheck = false;
meta = with lib; {
description = "This is the Microsoft Azure Batch Client Library";
homepage = "https://github.com/Azure/azure-sdk-for-python";
license = licenses.mit;
maintainers = with maintainers; [ maxwilson ];
};
}