python3Packages.hatchling: 1.29.0 -> 1.30.1

https://github.com/pypa/hatch/releases/tag/hatchling-v1.30.1
This commit is contained in:
Martin Weinelt 2026-06-03 02:38:31 +02:00
commit ffe9da38cb
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -17,14 +17,14 @@
virtualenv,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "hatchling";
version = "1.29.0";
version = "1.30.1";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-eTwxgW2VLO5AW4NIjOABxxnzJdnNpp8fxM11BSdkDqY=";
inherit (finalAttrs) pname version;
hash = "sha256-7uT9RTV/cuuz16QuXXLPteKe1CbXnog2KIkmxCWNXy4=";
};
# listed in backend/pyproject.toml
@ -65,11 +65,11 @@ buildPythonPackage rec {
description = "Modern, extensible Python build backend";
mainProgram = "hatchling";
homepage = "https://hatch.pypa.io/latest/";
changelog = "https://github.com/pypa/hatch/releases/tag/hatchling-v${version}";
changelog = "https://github.com/pypa/hatch/releases/tag/hatchling-v${finalAttrs.version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
hexa
ofek
];
};
}
})