Merge pull request #298872 from fabaff/lupa-bump

python312Packages.lupa: 2.0 -> 2.1
This commit is contained in:
Fabian Affolter 2024-03-25 23:16:38 +01:00 committed by GitHub
commit 0b7a51bc0d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 8 additions and 6 deletions

View File

@ -1,24 +1,26 @@
{ lib
, buildPythonPackage
, cython
, cython_3
, fetchPypi
, pythonOlder
, setuptools
}:
buildPythonPackage rec {
pname = "lupa";
version = "2.0";
format = "setuptools";
version = "2.1";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-rT/vSGvnrd3TSf6anDk3iQYTEs+Y68UztIm+NPSEy3k=";
hash = "sha256-dgAwcS1SczlvXpY92HMa77WsZdku/4v4/UEkwWMP6VA=";
};
nativeBuildInputs = [
cython
build-system = [
cython_3
setuptools
];
pythonImportsCheck = [