depot/third_party/nixpkgs/pkgs/development/python-modules/ilua/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

45 lines
804 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
jupyter-console,
jupyter-core,
pygments,
setuptools,
termcolor,
txzmq,
}:
buildPythonPackage rec {
pname = "ilua";
version = "0.2.1";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-YxV6xC7GS5NXyMPRZN9YIJxamgP2etwrZUAZjk5PjtU=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [
jupyter-console
jupyter-core
pygments
termcolor
txzmq
];
# No tests found
doCheck = false;
pythonImportsCheck = [ "ilua" ];
meta = with lib; {
description = "Portable Lua kernel for Jupyter";
mainProgram = "ilua";
homepage = "https://github.com/guysv/ilua";
license = licenses.gpl2Only;
maintainers = with maintainers; [ wolfangaukang ];
};
}