python3Packages.lupa: 2.6 -> 2.7 (#507851)

This commit is contained in:
Thomas Gerbet
2026-04-12 18:40:28 +00:00
committed by GitHub
@@ -6,14 +6,14 @@
setuptools,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "lupa";
version = "2.6";
version = "2.7";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-mncKbolXa+NEdmjXztMSzW/UHTwTwkYsncLCq1cORdk=";
inherit (finalAttrs) pname version;
hash = "sha256-c6ZM5dyM2Vt1ozDBUT5G4JjUD87tP+pRbAn2WV6t6Ik=";
};
build-system = [
@@ -26,8 +26,8 @@ buildPythonPackage rec {
meta = {
description = "Lua in Python";
homepage = "https://github.com/scoder/lupa";
changelog = "https://github.com/scoder/lupa/blob/lupa-${version}/CHANGES.rst";
changelog = "https://github.com/scoder/lupa/blob/lupa-${finalAttrs.version}/CHANGES.rst";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
})