Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created May 2, 2019 06:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryantm/e755d938fdeef17502b6a7b1a848dcab to your computer and use it in GitHub Desktop.
Save ryantm/e755d938fdeef17502b6a7b1a848dcab to your computer and use it in GitHub Desktop.
/nix/store/xw548rwla5i0dn3jvzhcbzf6j8yij6rz-python3.7-jupyterlab-0.35.5
├── bin
│   ├── jlpm
│   ├── jupyter-lab
│   ├── jupyter-labextension
│   └── jupyter-labhub
├── etc
│   └── jupyter
│   └── jupyter_notebook_config.d
│   └── jupyterlab.json
├── lib
│   └── python3.7
│   └── site-packages
│   ├── jupyterlab
│   │   ├── browser_check.py
│   │   ├── build_handler.py
│   │   ├── chrome-test.js
│   │   ├── commands.py
│   │   ├── extension_manager_handler.py
│   │   ├── extension.py
│   │   ├── __init__.py
│   │   ├── jlpmapp.py
│   │   ├── labapp.py
│   │   ├── labextensions.py
│   │   ├── labhubapp.py
│   │   ├── __main__.py
│   │   ├── node-version-check.js
│   │   ├── __pycache__
│   │   │   ├── browser_check.cpython-37.pyc
│   │   │   ├── build_handler.cpython-37.pyc
│   │   │   ├── commands.cpython-37.pyc
│   │   │   ├── extension.cpython-37.pyc
│   │   │   ├── extension_manager_handler.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── jlpmapp.cpython-37.pyc
│   │   │   ├── labapp.cpython-37.pyc
│   │   │   ├── labextensions.cpython-37.pyc
│   │   │   ├── labhubapp.cpython-37.pyc
│   │   │   ├── __main__.cpython-37.pyc
│   │   │   ├── selenium_check.cpython-37.pyc
│   │   │   ├── semver.cpython-37.pyc
│   │   │   └── _version.cpython-37.pyc
│   │   ├── schemas
│   │   │   └── @jupyterlab
│   │   │   ├── application-extension
│   │   │   │   ├── package.json.orig
│   │   │   │   └── sidebar.json
│   │   │   ├── apputils-extension
│   │   │   │   ├── package.json.orig
│   │   │   │   └── themes.json
│   │   │   ├── codemirror-extension
│   │   │   │   ├── commands.json
│   │   │   │   └── package.json.orig
│   │   │   ├── docmanager-extension
│   │   │   │   ├── package.json.orig
│   │   │   │   └── plugin.json
│   │   │   ├── extensionmanager-extension
│   │   │   │   ├── package.json.orig
│   │   │   │   └── plugin.json
│   │   │   ├── fileeditor-extension
│   │   │   │   ├── package.json.orig
│   │   │   │   └── plugin.json
│   │   │   ├── notebook-extension
│   │   │   │   ├── package.json.orig
│   │   │   │   └── tracker.json
│   │   │   └── shortcuts-extension
│   │   │   ├── package.json.orig
│   │   │   └── plugin.json
│   │   ├── selenium_check.py
│   │   ├── semver.py
│   │   ├── staging
│   │   │   ├── index.js
│   │   │   ├── package.json
│   │   │   ├── templates
│   │   │   │   ├── error.html
│   │   │   │   ├── partial.html
│   │   │   │   └── template.html
│   │   │   ├── webpack.config.js
│   │   │   ├── webpack.prod.config.js
│   │   │   ├── yarn.js
│   │   │   └── yarn.lock
│   │   ├── static
│   │   │   ├── 0.8655c60128912e3ea900.js
│   │   │   ├── 0.8655c60128912e3ea900.js.map
│   │   │   ├── 3.41f272f8c07719e6ad4f.js
│   │   │   ├── 3.41f272f8c07719e6ad4f.js.map
│   │   │   ├── 674f50d287a8c48dc19ba404d20fe713.eot
│   │   │   ├── 912ec66d7572ff821749319396470bde.svg
│   │   │   ├── af7ae505a9eed503f8b8e6982036873e.woff2
│   │   │   ├── b06871f281fee6b241d60582ae9369b9.ttf
│   │   │   ├── fee66e712a8a08eef5805a46892932ad.woff
│   │   │   ├── index.html
│   │   │   ├── index.out.js
│   │   │   ├── main.78a97ae7d969b08570c6.js
│   │   │   ├── main.78a97ae7d969b08570c6.js.map
│   │   │   ├── package.json
│   │   │   ├── vega.0adc8a452b66056a4f6e.js
│   │   │   ├── vega.0adc8a452b66056a4f6e.js.map
│   │   │   ├── vendors~main.0860a53787e6d7ce5723.js
│   │   │   ├── vendors~main.0860a53787e6d7ce5723.js.map
│   │   │   ├── vendors~vega.70a9a6945c18f5c12a42.js
│   │   │   └── vendors~vega.70a9a6945c18f5c12a42.js.map
│   │   ├── tests
│   │   │   ├── echo_kernel.py
│   │   │   ├── __init__.py
│   │   │   ├── mock_packages
│   │   │   │   ├── extension
│   │   │   │   │   ├── index.js
│   │   │   │   │   └── package.json
│   │   │   │   ├── incompat
│   │   │   │   │   ├── index.js
│   │   │   │   │   └── package.json
│   │   │   │   ├── mimeextension
│   │   │   │   │   ├── index.js
│   │   │   │   │   └── package.json
│   │   │   │   └── package
│   │   │   │   ├── index.js
│   │   │   │   └── package.json
│   │   │   ├── __pycache__
│   │   │   │   ├── echo_kernel.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── test_app.cpython-37.pyc
│   │   │   │   ├── test_build_api.cpython-37.pyc
│   │   │   │   └── test_jupyterlab.cpython-37.pyc
│   │   │   ├── test_app.py
│   │   │   ├── test_build_api.py
│   │   │   └── test_jupyterlab.py
│   │   ├── themes
│   │   │   └── @jupyterlab
│   │   │   ├── theme-dark-extension
│   │   │   │   ├── 674f50d287a8c48dc19ba404d20fe713.eot
│   │   │   │   ├── af7ae505a9eed503f8b8e6982036873e.woff2
│   │   │   │   ├── b06871f281fee6b241d60582ae9369b9.ttf
│   │   │   │   ├── embed.css
│   │   │   │   ├── fee66e712a8a08eef5805a46892932ad.woff
│   │   │   │   ├── index.css
│   │   │   │   └── package.json.orig
│   │   │   └── theme-light-extension
│   │   │   ├── 674f50d287a8c48dc19ba404d20fe713.eot
│   │   │   ├── af7ae505a9eed503f8b8e6982036873e.woff2
│   │   │   ├── b06871f281fee6b241d60582ae9369b9.ttf
│   │   │   ├── embed.css
│   │   │   ├── fee66e712a8a08eef5805a46892932ad.woff
│   │   │   ├── index.css
│   │   │   └── package.json.orig
│   │   └── _version.py
│   └── jupyterlab-0.35.5.dist-info
│   ├── entry_points.txt
│   ├── INSTALLER
│   ├── LICENSE
│   ├── METADATA
│   ├── RECORD
│   ├── top_level.txt
│   └── WHEEL
├── nix-support
│   └── propagated-build-inputs
└── share
└── jupyter
└── lab
├── schemas
│   └── @jupyterlab
│   ├── application-extension
│   │   ├── package.json.orig
│   │   └── sidebar.json
│   ├── apputils-extension
│   │   ├── package.json.orig
│   │   └── themes.json
│   ├── codemirror-extension
│   │   ├── commands.json
│   │   └── package.json.orig
│   ├── docmanager-extension
│   │   ├── package.json.orig
│   │   └── plugin.json
│   ├── extensionmanager-extension
│   │   ├── package.json.orig
│   │   └── plugin.json
│   ├── fileeditor-extension
│   │   ├── package.json.orig
│   │   └── plugin.json
│   ├── notebook-extension
│   │   ├── package.json.orig
│   │   └── tracker.json
│   └── shortcuts-extension
│   ├── package.json.orig
│   └── plugin.json
├── static
│   ├── 0.8655c60128912e3ea900.js
│   ├── 0.8655c60128912e3ea900.js.map
│   ├── 3.41f272f8c07719e6ad4f.js
│   ├── 3.41f272f8c07719e6ad4f.js.map
│   ├── 674f50d287a8c48dc19ba404d20fe713.eot
│   ├── 912ec66d7572ff821749319396470bde.svg
│   ├── af7ae505a9eed503f8b8e6982036873e.woff2
│   ├── b06871f281fee6b241d60582ae9369b9.ttf
│   ├── fee66e712a8a08eef5805a46892932ad.woff
│   ├── index.html
│   ├── index.out.js
│   ├── main.78a97ae7d969b08570c6.js
│   ├── main.78a97ae7d969b08570c6.js.map
│   ├── package.json
│   ├── vega.0adc8a452b66056a4f6e.js
│   ├── vega.0adc8a452b66056a4f6e.js.map
│   ├── vendors~main.0860a53787e6d7ce5723.js
│   ├── vendors~main.0860a53787e6d7ce5723.js.map
│   ├── vendors~vega.70a9a6945c18f5c12a42.js
│   └── vendors~vega.70a9a6945c18f5c12a42.js.map
└── themes
└── @jupyterlab
├── theme-dark-extension
│   ├── 674f50d287a8c48dc19ba404d20fe713.eot
│   ├── af7ae505a9eed503f8b8e6982036873e.woff2
│   ├── b06871f281fee6b241d60582ae9369b9.ttf
│   ├── embed.css
│   ├── fee66e712a8a08eef5805a46892932ad.woff
│   ├── index.css
│   └── package.json.orig
└── theme-light-extension
├── 674f50d287a8c48dc19ba404d20fe713.eot
├── af7ae505a9eed503f8b8e6982036873e.woff2
├── b06871f281fee6b241d60582ae9369b9.ttf
├── embed.css
├── fee66e712a8a08eef5805a46892932ad.woff
├── index.css
└── package.json.orig
53 directories, 170 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment