blob: 1749a7074989c72434d7018ad711e3ca497e37de (
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
32
33
34
35
36
37
|
{
lib,
buildPythonPackage,
fetchPypi,
azure-nspkg,
setuptools,
}:
buildPythonPackage (finalAttrs: {
pname = "azure-mgmt-nspkg";
version = "3.0.2";
pyproject = true;
__structuredAttrs = true;
src = fetchPypi {
inherit (finalAttrs) pname version;
extension = "zip";
hash = "sha256-iyKH9nFSlQWylgBebekVCwdDRMLH0cgFs/BT0IHVjFI=";
};
build-system = [ setuptools ];
dependencies = [ azure-nspkg ];
doCheck = false;
meta = {
description = "Microsoft Azure SDK for Python";
homepage = "https://github.com/Azure/azure-sdk-for-python";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
olcai
maxwilson
];
};
})
|