mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-09 14:33:22 +00:00
7b19dd79f0
Diff: https://github.com/spyder-ide/spyder-kernels/compare/refs/tags/v3.0.1...v3.0.2 Changelog: https://github.com/spyder-ide/spyder-kernels/blob/v3.0.2/CHANGELOG.md
57 lines
1.1 KiB
Nix
57 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
|
|
# build-system
|
|
setuptools,
|
|
|
|
# dependencies
|
|
cloudpickle,
|
|
ipykernel,
|
|
ipython,
|
|
jupyter-client,
|
|
pyxdg,
|
|
pyzmq,
|
|
wurlitzer,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "spyder-kernels";
|
|
version = "3.0.2";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "spyder-ide";
|
|
repo = "spyder-kernels";
|
|
tag = "v${version}";
|
|
hash = "sha256-lze398ZQqI6cEu/rldPqzNQ8jrqI/ixUps/aJat7920=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
cloudpickle
|
|
ipykernel
|
|
ipython
|
|
jupyter-client
|
|
pyxdg
|
|
pyzmq
|
|
wurlitzer
|
|
];
|
|
|
|
# No tests
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "spyder_kernels" ];
|
|
|
|
meta = {
|
|
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/v${version}/CHANGELOG.md";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ gebner ];
|
|
};
|
|
}
|