2025-07-24 13:55:40 +02:00

79 lines
1.4 KiB
Nix

{
lib,
buildPythonPackage,
fetchPypi,
pythonOlder,
# runtime
editables,
packaging,
pathspec,
pluggy,
tomli,
trove-classifiers,
# tests
build,
python,
requests,
virtualenv,
}:
buildPythonPackage rec {
pname = "hatchling";
version = "1.27.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-lxwpbZgZq7OBERL8UsepdRyNOBiY82Uzuxb5eR6UH9Y=";
};
# listed in backend/pyproject.toml
dependencies = [
editables
packaging
pathspec
pluggy
trove-classifiers
]
++ lib.optionals (pythonOlder "3.11") [ tomli ];
pythonImportsCheck = [
"hatchling"
"hatchling.build"
];
# tries to fetch packages from the internet
doCheck = false;
# listed in /backend/tests/downstream/requirements.txt
nativeCheckInputs = [
build
requests
virtualenv
];
preCheck = ''
export HOME=$(mktemp -d)
'';
checkPhase = ''
runHook preCheck
${python.interpreter} tests/downstream/integrate.py
runHook postCheck
'';
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 = lib.licenses.mit;
maintainers = with lib.maintainers; [
hexa
ofek
];
};
}