nixpkgs/pkgs/development/python-modules/lupa/default.nix
Martin Weinelt 528354e66c
python312Packages.cython: 0.29.36 -> 3.0.9
Folds the cython_3 attribute into the primary cython attribute and
migrates all packages from the versioned attribute.

The old version will be provided through the cython_0 attribute in an
effort to phase it out.
2024-03-27 18:35:05 +01:00

37 lines
685 B
Nix

{ lib
, buildPythonPackage
, cython
, fetchPypi
, pythonOlder
, setuptools
}:
buildPythonPackage rec {
pname = "lupa";
version = "2.1";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-dgAwcS1SczlvXpY92HMa77WsZdku/4v4/UEkwWMP6VA=";
};
build-system = [
cython
setuptools
];
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 ];
};
}