1{ pkgs
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 version = "3.0.2";
8 pname = "azure-nspkg";
9
10 src = fetchPypi {
11 inherit pname version;
12 extension = "zip";
13 sha256 = "e7d3cea6af63e667d87ba1ca4f8cd7cb4dfca678e4c55fc1cedb320760e39dd0";
14 };
15
16 meta = with pkgs.lib; {
17 description = "Microsoft Azure SDK for Python";
18 homepage = "https://azure.microsoft.com/en-us/develop/python/";
19 license = licenses.asl20;
20 maintainers = with maintainers; [ olcai ];
21 };
22}