blob: eadb48d9024d3899f941f65a7e1103b3adbabecf (
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
|
{ stdenv, buildPythonPackage, fetchPypi, isPyPy
, azure-nspkg
}:
buildPythonPackage rec {
pname = "azure-common";
version = "1.1.14";
disabled = isPyPy;
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "0ibnhid0ajnmn7nzbbkjh1jl5iyqa1bnzn1j01nl1vgxkj3wi3sg";
};
propagatedBuildInputs = [ azure-nspkg ];
doCheck = false;
meta = with stdenv.lib; {
description = "Microsoft Azure Client Library for Python (Common)";
homepage = https://github.com/Azure/azure-sdk-for-python;
license = licenses.mit;
maintainers = with maintainers; [ olcai stesie ];
};
}
|