Files
nixpkgs/pkgs/development/python-modules/azure-nspkg/default.nix
2026-06-05 10:47:52 +07:00

35 lines
645 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
}:
buildPythonPackage (finalAttrs: {
version = "3.0.2";
pyproject = true;
__structuredAttrs = true;
pname = "azure-nspkg";
src = fetchPypi {
inherit (finalAttrs) pname version;
extension = "zip";
hash = "sha256-59POpq9j5mfYe6HKT4zXy038pnjkxV/BztsyB2DjndA=";
};
build-system = [ setuptools ];
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
];
};
})