Martin Weinelt c96a389516
python3Packages.hg-evolve: 11.1.7.post1 -> 11.1.8
This commit was automatically generated using update-python-libraries.
2025-04-03 23:12:27 +02:00

67 lines
1.2 KiB
Nix

{
lib,
buildPythonPackage,
fetchPypi,
mercurial,
setuptools,
}:
buildPythonPackage rec {
pname = "hg-evolve";
version = "11.1.8";
pyproject = true;
src = fetchPypi {
pname = "hg_evolve";
inherit version;
hash = "sha256-JIberZCiRmxPkn0P+Dsps42jHWhkA1hLKGXPlbb+APU=";
};
build-system = [ setuptools ];
nativeCheckInputs = [ mercurial ];
checkPhase = ''
runHook preCheck
export TESTTMP=$(mktemp -d)
export HOME=$TESTTMP
cat <<EOF >$HOME/.hgrc
[extensions]
evolve =
topic =
EOF
# Shipped tests use the mercurial testing framework, and produce inconsistent results.
# Do a quick smoke-test to see if things do what we expect.
hg init $TESTTMP/repo
pushd $TESTTMP/repo
touch a
hg add a
hg commit -m "init a"
hg topic something
touch b
hg add b
hg commit -m "init b"
echo hi > b
hg amend
hg obslog
popd
runHook postCheck
'';
meta = with lib; {
description = "Enables the changeset evolution feature of Mercurial core";
homepage = "https://www.mercurial-scm.org/doc/evolution/";
maintainers = with maintainers; [
xavierzwirtz
lukegb
];
license = licenses.gpl2Plus;
};
}