depot/third_party/nixpkgs/pkgs/development/python-modules/ilua/default.nix
Default email 5e7c2d6cef Project import generated by Copybara.
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
2023-10-09 21:29:22 +02:00

40 lines
715 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, jupyter-console
, jupyter-core
, pygments
, termcolor
, txzmq
}:
buildPythonPackage rec {
pname = "ilua";
version = "0.2.1";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-YxV6xC7GS5NXyMPRZN9YIJxamgP2etwrZUAZjk5PjtU=";
};
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 ];
};
}