1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5}:
6
7buildPythonPackage rec {
8 version = "3.0.2";
9 format = "setuptools";
10 pname = "azure-nspkg";
11
12 src = fetchPypi {
13 inherit pname version;
14 extension = "zip";
15 sha256 = "e7d3cea6af63e667d87ba1ca4f8cd7cb4dfca678e4c55fc1cedb320760e39dd0";
16 };
17
18 doCheck = false;
19
20 meta = with lib; {
21 description = "Microsoft Azure SDK for Python";
22 homepage = "https://github.com/Azure/azure-sdk-for-python";
23 license = licenses.mit;
24 maintainers = with maintainers; [
25 olcai
26 maxwilson
27 ];
28 };
29}