aboutsummaryrefslogtreecommitdiffstats
path: root/pkgs/development/python-modules/azure-mgmt-nspkg/default.nix
blob: 8fd27bd54c3e1f3683e642c5ab385a54b0795a9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, buildPythonPackage, fetchPypi
, azure-nspkg
}:

buildPythonPackage rec {
  pname = "azure-mgmt-nspkg";
  version = "2.0.0";

  src = fetchPypi {
    inherit pname version;
    extension = "zip";
    sha256 = "0vrycmdgqz7z0qfhakmzr5hgsj0l11pyirn3bkpnimnpypa8hr73";
  };

  propagatedBuildInputs = [ azure-nspkg ];

  meta = with stdenv.lib; {
    description = "Microsoft Azure Resource Management Namespace Package [Internal]";
    homepage = https://github.com/Azure/azure-sdk-for-python;
    license = licenses.mit;
    maintainers = with maintainers; [ olcai stesie ];
  };
}