88abffb7d2
GitOrigin-RevId: bc9b956714ed6eac5f8888322aac5bc41389defa
32 lines
851 B
Nix
32 lines
851 B
Nix
{ lib, buildPythonPackage, fetchPypi, cloudpickle, ipykernel, wurlitzer,
|
|
jupyter_client, pyzmq }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "spyder-kernels";
|
|
version = "2.1.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "6c287207c7855bb581eae66ef8d990407382d5f9caccb1e0cabf909aaaf10c9b";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
cloudpickle
|
|
ipykernel
|
|
wurlitzer
|
|
jupyter_client
|
|
pyzmq
|
|
];
|
|
|
|
# No tests
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Jupyter kernels for Spyder's console";
|
|
homepage = "https://docs.spyder-ide.org/current/ipythonconsole.html";
|
|
downloadPage = "https://github.com/spyder-ide/spyder-kernels/releases";
|
|
changelog = "https://github.com/spyder-ide/spyder-kernels/blob/master/CHANGELOG.md";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ gebner ];
|
|
};
|
|
}
|