python312Packages.hatchling: 1.26.1 -> 1.27.0
Changelog: https://github.com/pypa/hatch/releases/tag/hatchling-v1.27.0
This commit is contained in:
@@ -2,6 +2,7 @@
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchPypi,
|
||||
fetchFromGitHub,
|
||||
pythonOlder,
|
||||
|
||||
# runtime
|
||||
@@ -21,17 +22,16 @@
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "hatchling";
|
||||
version = "1.26.1";
|
||||
format = "pyproject";
|
||||
disabled = pythonOlder "3.8";
|
||||
version = "1.27.0";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-jZVlkubF1d8fWRvh6XqUHHuexv0Dn0yGJMKVV7rANOk=";
|
||||
hash = "sha256-lxwpbZgZq7OBERL8UsepdRyNOBiY82Uzuxb5eR6UH9Y=";
|
||||
};
|
||||
|
||||
# listed in backend/pyproject.toml
|
||||
propagatedBuildInputs = [
|
||||
dependencies = [
|
||||
editables
|
||||
packaging
|
||||
pathspec
|
||||
@@ -55,7 +55,7 @@ buildPythonPackage rec {
|
||||
];
|
||||
|
||||
preCheck = ''
|
||||
export HOME=$TMPDIR
|
||||
export HOME=$(mktemp -d)
|
||||
'';
|
||||
|
||||
checkPhase = ''
|
||||
@@ -64,13 +64,13 @@ buildPythonPackage rec {
|
||||
runHook postCheck
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
meta = {
|
||||
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}";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [
|
||||
hexa
|
||||
ofek
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user