about summary refs log tree commit diff
path: root/pkgs/development/python-modules/azure-nspkg/default.nix
blob: fb06758c5d40ec2a2b13224e65cd80f249886d7b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ pkgs
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  version = "1.0.0";
  pname = "azure-nspkg";

  src = fetchPypi {
    inherit pname version;
    extension = "zip";
    sha256 = "293f286c15ea123761f30f5b1cb5adebe5f1e5009efade923c6dd1e017621bf7";
  };

  meta = with pkgs.lib; {
    description = "Microsoft Azure SDK for Python";
    homepage = "https://azure.microsoft.com/en-us/develop/python/";
    license = licenses.asl20;
    maintainers = with maintainers; [ olcai ];
  };
}