We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Steps to reproduce the behavior: nix build .#python310Packages.openapi-core or build jupyterWith with rust kernel like this
nix build .#python310Packages.openapi-core
flake.nix
{ description = "JupyterLab Flake for Rust"; inputs = { jupyterWith.url = "github:tweag/jupyterWith"; flake-utils.url = "github:numtide/flake-utils"; nixgl.url = "github:guibou/nixGL"; }; outputs = { self, nixpkgs, jupyterWith, flake-utils, nixgl, }: flake-utils.lib.eachSystem ["x86_64-linux"] (system: let pkgs = import nixpkgs { inherit system; overlays = [nixgl.overlay] ++ (nixpkgs.lib.attrValues jupyterWith.overlays); config.allowUnfree = true; }; iPython = pkgs.kernels.iPythonWith { name = "Python-env"; packages = p: with p; [ ]; ignoreCollisions = true; }; RustKernel = pkgs.kernels.rustWith { name = "Rust"; packages = with pkgs; [ openssl pkg-config ]; }; jupyterEnvironment = pkgs.jupyterlabWith { kernels = [iPython RustKernel]; }; jupyterWrapped = pkgs.writeShellScriptBin "jupyter" '' #!/bin/sh ${pkgs.nixgl.auto.nixGLDefault}/bin/nixGL ${jupyterEnvironment}/bin/jupyter-lab "$@" ''; in rec { apps.jupyterLab = { type = "app"; program = "${jupyterWrapped}/bin/jupyter"; }; apps.default = apps.jupyterLab; devShells.default = jupyterEnvironment.env; }); }
link to a gist
tweag/jupyenv#308
@dotlambda
- system: `"x86_64-linux"` - host os: `Linux 5.15.68, NixOS, 22.11 (Raccoon), 22.11.20220925.79d3ca0` - multi-user?: `yes` - sandbox: `yes` - version: `nix-env (Nix) 2.11.0` - channels(root): `"nixos"` - nixpkgs: `/nix/var/nix/profiles/per-user/root/channels/nixos`
The text was updated successfully, but these errors were encountered:
seems to be caused by changes in openapi-spec-validator python-openapi/openapi-spec-validator#173 python-openapi/openapi-core#402
openapi-spec-validator
Sorry, something went wrong.
pinging @rvl as they are maintainer of openapi-spec-validator
build on nixos-unstable
No branches or pull requests
Steps To Reproduce
Steps to reproduce the behavior:
nix build .#python310Packages.openapi-core
or build jupyterWith with rust kernel like thisflake.nix
Build log
link to a gist
Additional context
tweag/jupyenv#308
Notify maintainers
@dotlambda
Metadata
The text was updated successfully, but these errors were encountered: