python3Packages.azure-mgmt-datalake-nspkg: modernize

This commit is contained in:
Harinn
2026-06-04 21:30:22 +07:00
parent 47d342dffc
commit 043fd75eb1
@@ -6,15 +6,17 @@
setuptools,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "azure-mgmt-datalake-nspkg";
version = "3.0.1";
pyproject = true;
__structuredAttrs = true;
src = fetchPypi {
inherit pname version;
inherit (finalAttrs) pname version;
extension = "zip";
sha256 = "deb192ba422f8b3ec272ce4e88736796f216f28ea5b03f28331d784b7a3f4880";
hash = "sha256-3rGSukIviz7Ccs5OiHNnlvIW8o6lsD8oMx14S3o/SIA=";
};
build-system = [ setuptools ];
@@ -30,4 +32,4 @@ buildPythonPackage rec {
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ maxwilson ];
};
}
})