nixpkgs/pkgs/development/python-modules/ilua/default.nix
Martin Weinelt 0215034f25 python3.pkgs: Migrate fetchers to use hash
when they already rely on SRI hashes.
2023-03-03 23:59:29 +01:00

41 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 ];
};
}