nixpkgs/pkgs/development/python-modules/lupa/default.nix
2023-04-04 15:45:22 +02:00

36 lines
667 B
Nix

{ lib
, buildPythonPackage
, cython
, fetchPypi
, pythonOlder
}:
buildPythonPackage rec {
pname = "lupa";
version = "2.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-rT/vSGvnrd3TSf6anDk3iQYTEs+Y68UztIm+NPSEy3k=";
};
nativeBuildInputs = [
cython
];
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 ];
};
}