depot/third_party/nixpkgs/pkgs/development/python-modules/lupa/default.nix
Default email 87f9c27ba9 Project import generated by Copybara.
GitOrigin-RevId: fe2ecaf706a5907b5e54d979fbde4924d84b65fc
2023-04-12 14:48:02 +02:00

35 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 ];
};
}