python3Packages.lupa: 2.5 -> 2.6 (#476315)

This commit is contained in:
Fabian Affolter
2026-01-04 20:57:36 +00:00
committed by GitHub
@@ -3,20 +3,17 @@
buildPythonPackage,
cython,
fetchPypi,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "lupa";
version = "2.5";
version = "2.6";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-acaonyt7CKMEDX7Soe7MujejHdyS+hmTOcU6KuPEjDQ=";
hash = "sha256-mncKbolXa+NEdmjXztMSzW/UHTwTwkYsncLCq1cORdk=";
};
build-system = [
@@ -30,7 +27,7 @@ buildPythonPackage rec {
description = "Lua in Python";
homepage = "https://github.com/scoder/lupa";
changelog = "https://github.com/scoder/lupa/blob/lupa-${version}/CHANGES.rst";
license = with lib.licenses; [ mit ];
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}