mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
32 lines
629 B
Nix
32 lines
629 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
azure-nspkg,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
version = "3.0.2";
|
|
format = "setuptools";
|
|
pname = "azure-mgmt-nspkg";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
extension = "zip";
|
|
sha256 = "8b2287f671529505b296005e6de9150b074344c2c7d1c805b3f053d081d58c52";
|
|
};
|
|
|
|
propagatedBuildInputs = [ azure-nspkg ];
|
|
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
description = "Microsoft Azure SDK for Python";
|
|
homepage = "https://github.com/Azure/azure-sdk-for-python";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [
|
|
olcai
|
|
maxwilson
|
|
];
|
|
};
|
|
}
|