nixpkgs/pkgs/development/python-modules/jupyter/default.nix
adisbladis 02dab4ab5c python3.pkgs.*: Explicitly pass buildPythonPackage format parameter
Long term we should move everything over to `pyproject = true`, but in
the mean time we can work towards deprecating the implicit `format` paremeter.

cc https://github.com/NixOS/nixpkgs/issues/253154
cc @mweinelt @figsoda
2023-12-07 17:46:49 +01:00

36 lines
753 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, notebook
, qtconsole
, jupyter-console
, nbconvert
, ipykernel
, ipywidgets
}:
buildPythonPackage rec {
version = "1.0.0";
format = "setuptools";
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 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
};
}