summary refs log blame commit diff
path: root/pkgs/development/python-modules/ilua/default.nix
blob: 5b5c129c27499a48cb5dfe0a86861629c4aa96cf (plain) (tree)
1
2
3
4
5
6
7
8
9
10
     
                    







                 
                        




























                                                                   
{ 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;
    sha256 = "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 ];
  };
}