uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
40
pkgs/development/python-modules/ilua/default.nix
Normal file
40
pkgs/development/python-modules/ilua/default.nix
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
{ 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 ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue