blob: bc0d07bbc500c4540e9340a1c82d1f0236ff8acf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
{ stdenv, buildPythonPackage, fetchPypi
, azure-common
, azure-nspkg
, msrestazure
}:
buildPythonPackage rec {
pname = "azure-batch";
version = "4.1.3";
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "0k1n73qpa2ns2kjsf9rjsv4b0vcdw6dggfr5c95igaxynpmwfwfd";
};
propagatedBuildInputs = [
azure-common
azure-nspkg
msrestazure
];
doCheck = false;
meta = with stdenv.lib; {
description = "Microsoft Azure Batch Client Library for Python";
homepage = https://github.com/Azure/azure-sdk-for-python;
license = licenses.mit;
maintainers = with maintainers; [ stesie ];
};
}
|