Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 463703c2135e
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 4bc107b06ec1
Choose a head ref
  • 8 commits
  • 7 files changed
  • 2 contributors

Commits on Sep 14, 2019

  1. pyzmq: fix darwin build

    B4dM4n committed Sep 14, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    B4dM4n Fabian Möller
    Copy the full SHA
    6002a5e View commit details
  2. nbformat: fix darwin build

    B4dM4n committed Sep 14, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    B4dM4n Fabian Möller
    Copy the full SHA
    3b77eeb View commit details
  3. nbconvert: fix darwin build

    B4dM4n committed Sep 14, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    B4dM4n Fabian Möller
    Copy the full SHA
    00000ca View commit details
  4. ipykernel:fix darwin build

    B4dM4n committed Sep 14, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    B4dM4n Fabian Möller
    Copy the full SHA
    8826460 View commit details
  5. notebook: fix darwin build

    B4dM4n committed Sep 14, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    B4dM4n Fabian Möller
    Copy the full SHA
    d3aaa25 View commit details
  6. nbval: fix darwin build

    B4dM4n committed Sep 14, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    B4dM4n Fabian Möller
    Copy the full SHA
    618b7d7 View commit details
  7. Logbook: fix darwin build

    B4dM4n committed Sep 14, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    B4dM4n Fabian Möller
    Copy the full SHA
    90b8849 View commit details

Commits on Sep 20, 2019

  1. Merge pull request #68823 from B4dM4n/notebook-darwin

    notebook: fix darwin sandbox build + dependencies
    LnL7 authored Sep 20, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    4bc107b View commit details
3 changes: 3 additions & 0 deletions pkgs/development/python-modules/Logbook/default.nix
Original file line number Diff line number Diff line change
@@ -18,6 +18,9 @@ buildPythonPackage rec {
py.test tests
'';

# Some of the tests use localhost networking.
__darwinAllowLocalNetworking = true;

meta = {
homepage = https://pythonhosted.org/Logbook/;
description = "A logging replacement for Python";
3 changes: 3 additions & 0 deletions pkgs/development/python-modules/ipykernel/default.nix
Original file line number Diff line number Diff line change
@@ -37,6 +37,9 @@ buildPythonPackage rec {
HOME=$(mktemp -d) pytest ipykernel -k "not (test_sys_path or test_sys_path_profile_dir or test_complete)"
'';

# Some of the tests use localhost networking.
__darwinAllowLocalNetworking = true;

meta = {
description = "IPython Kernel for Jupyter";
homepage = http://ipython.org/;
3 changes: 3 additions & 0 deletions pkgs/development/python-modules/nbconvert/default.nix
Original file line number Diff line number Diff line change
@@ -44,6 +44,9 @@ buildPythonPackage rec {
HOME=$(mktemp -d) py.test -v --ignore="nbconvert/preprocessors/tests/test_execute.py"
'';

# Some of the tests use localhost networking.
__darwinAllowLocalNetworking = true;

meta = {
description = "Converting Jupyter Notebooks";
homepage = https://jupyter.org/;
3 changes: 3 additions & 0 deletions pkgs/development/python-modules/nbformat/default.nix
Original file line number Diff line number Diff line change
@@ -29,6 +29,9 @@ buildPythonPackage rec {
export HOME=tmp
'';

# Some of the tests use localhost networking.
__darwinAllowLocalNetworking = true;

meta = {
description = "The Jupyter Notebook format";
homepage = https://jupyter.org/;
3 changes: 3 additions & 0 deletions pkgs/development/python-modules/nbval/default.nix
Original file line number Diff line number Diff line change
@@ -45,6 +45,9 @@ buildPythonPackage rec {
pytest tests --ignore tests/test_timeouts.py
'';

# Some of the tests use localhost networking.
__darwinAllowLocalNetworking = true;

meta = with lib; {
description = "A py.test plugin to validate Jupyter notebooks";
homepage = https://github.com/computationalmodelling/nbval;
3 changes: 3 additions & 0 deletions pkgs/development/python-modules/notebook/default.nix
Original file line number Diff line number Diff line change
@@ -64,6 +64,9 @@ buildPythonPackage rec {
else ""}
'';

# Some of the tests use localhost networking.
__darwinAllowLocalNetworking = true;

meta = {
description = "The Jupyter HTML notebook is a web-based notebook environment for interactive computing";
homepage = https://jupyter.org/;
3 changes: 3 additions & 0 deletions pkgs/development/python-modules/pyzmq/default.nix
Original file line number Diff line number Diff line change
@@ -32,4 +32,7 @@ buildPythonPackage rec {
and not test_on_recv_wake \
and not test_monitor"
'';

# Some of the tests use localhost networking.
__darwinAllowLocalNetworking = true;
}