blob: c90aa8640b7e43b272c33f4caee3b5f97edec876 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "azure-nspkg";
version = "2.0.0";
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "0yyw3wcy7xkrxwg7150a1wivgzwwyl877z2p4pv8xvk6iifyw6gy";
};
doCheck = false;
meta = with stdenv.lib; {
description = "Microsoft Azure Namespace Package";
homepage = https://github.com/Azure/azure-sdk-for-python;
license = licenses.mit;
maintainers = with maintainers; [ olcai stesie ];
};
}
|