Files
nixpkgs/pkgs/development/python-modules/ilua/default.nix
T
Michael Daniels 075e8c2c4f treewide: change 'format = "pyproject";' to 'pyproject = true;'
This is almost all find-and-replace.

I manually edited:
* pkgs/development/python-modules/notifications-android-tv/default.nix,
* pkgs/servers/home-assistant/default.nix,
* pkgs/development/tools/continuous-integration/buildbot/master.nix

A few files have not been changed in this PR because they would cause rebuilds.

This PR should have 0 rebuilds.
2026-01-12 17:50:35 -05:00

46 lines
762 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
jupyter-console,
jupyter-core,
pygments,
setuptools,
termcolor,
txzmq,
}:
buildPythonPackage rec {
pname = "ilua";
version = "0.2.1";
pyproject = true;
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 = {
description = "Portable Lua kernel for Jupyter";
mainProgram = "ilua";
homepage = "https://github.com/guysv/ilua";
license = lib.licenses.gpl2Only;
maintainers = [ ];
};
}