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
60
pkgs/development/python-modules/ansible-kernel/default.nix
Normal file
60
pkgs/development/python-modules/ansible-kernel/default.nix
Normal file
|
|
@ -0,0 +1,60 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, writeText
|
||||
, ipywidgets
|
||||
, six
|
||||
, docopt
|
||||
, tqdm
|
||||
, jupyter
|
||||
, psutil
|
||||
, pyyaml
|
||||
, ansible-runner
|
||||
, ansible
|
||||
, python
|
||||
}:
|
||||
|
||||
let
|
||||
kernelSpecFile = writeText "kernel.json" (builtins.toJSON {
|
||||
argv = [ python.interpreter "-m" "ansible_kernel" "-f" "{connection_file}" ];
|
||||
codemirror_mode = "yaml";
|
||||
display_name = "Ansible";
|
||||
language = "ansible";
|
||||
});
|
||||
in
|
||||
buildPythonPackage rec {
|
||||
pname = "ansible-kernel";
|
||||
version = "1.0.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-UJjm9FpmXSznXtaIR2rVv5YJS/H83FvRkNz09vwoe0c=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ ipywidgets six docopt tqdm jupyter psutil pyyaml ansible-runner ansible ];
|
||||
|
||||
postPatch = ''
|
||||
# remove when merged
|
||||
# https://github.com/ansible/ansible-jupyter-kernel/pull/82
|
||||
touch LICENSE.md
|
||||
|
||||
# remove custom install
|
||||
sed -i "s/cmdclass={'install': Installer},//" setup.py
|
||||
'';
|
||||
|
||||
# tests hang with launched kernel
|
||||
doCheck = false;
|
||||
|
||||
# install kernel manually
|
||||
postInstall = ''
|
||||
mkdir -p $out/share/jupyter/kernels/ansible/
|
||||
ln -s ${kernelSpecFile} $out/share/jupyter/kernels/ansible/kernel.json
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "An Ansible kernel for Jupyter";
|
||||
homepage = "https://github.com/ansible/ansible-jupyter-kernel";
|
||||
license = licenses.asl20;
|
||||
maintainers = [ maintainers.costrouc ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue