Merge pull request #224657 from fabaff/lupa-bump

python310Packages.lupa: 1.14.1 -> 2.0
This commit is contained in:
Fabian Affolter 2023-04-05 00:11:40 +02:00 committed by GitHub
commit 8ffe39d96e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,24 +2,33 @@
, buildPythonPackage
, cython
, fetchPypi
, pythonOlder
}:
buildPythonPackage rec {
pname = "lupa";
version = "1.14.1";
version = "2.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-0P1OYK0Un+JckFMOKg4DKkKm8EVfKcoO24Fw1ux1HG4=";
hash = "sha256-rT/vSGvnrd3TSf6anDk3iQYTEs+Y68UztIm+NPSEy3k=";
};
nativeBuildInputs = [ cython ];
nativeBuildInputs = [
cython
];
pythonImportsCheck = [ "lupa" ];
pythonImportsCheck = [
"lupa"
];
meta = with lib; {
description = "Lua in Python";
homepage = "https://github.com/scoder/lupa";
changelog = "https://github.com/scoder/lupa/blob/lupa-${version}/CHANGES.rst";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};