mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
bac4d95aa2
Lots of URLs were HTTP redirect to HTTPS. Changed those and checked them if there's actual content. Inspired by https://github.com/NixOS/nixpkgs/issues/60004
35 lines
738 B
Nix
35 lines
738 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, notebook
|
|
, qtconsole
|
|
, jupyter_console
|
|
, nbconvert
|
|
, ipykernel
|
|
, ipywidgets
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
version = "1.0.0";
|
|
pname = "jupyter";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "d9dc4b3318f310e34c82951ea5d6683f67bed7def4b259fafbfe4f1beb1d8e5f";
|
|
};
|
|
|
|
propagatedBuildInputs = [ notebook qtconsole jupyter_console nbconvert ipykernel ipywidgets ];
|
|
|
|
# Meta-package, no tests
|
|
doCheck = false;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Installs all the Jupyter components in one go";
|
|
homepage = "https://jupyter.org/";
|
|
license = licenses.bsd3;
|
|
platforms = platforms.all;
|
|
priority = 100; # This is a metapackage which is unimportant
|
|
};
|
|
|
|
}
|