nixpkgs/pkgs/development/python-modules/ilua/default.nix
2024-02-10 22:39:36 +01:00

46 lines
773 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";
homepage = "https://github.com/guysv/ilua";
license = licenses.gpl2Only;
maintainers = with maintainers; [ wolfangaukang ];
};
}