;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2024 Efraim Flashner ;;; ;;; This file is part of GNU Guix. ;;; ;;; GNU Guix is free software; you can redistribute it and/or modify it ;;; under the terms of the GNU General Public License as published by ;;; the Free Software Foundation; either version 3 of the License, or (at ;;; your option) any later version. ;;; ;;; GNU Guix is distributed in the hope that it will be useful, but ;;; WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;; GNU General Public License for more details. ;;; ;;; You should have received a copy of the GNU General Public License ;;; along with GNU Guix. If not, see . ;;; This file returns a manifest of packages built using the cargo-build-system. ;;; It is used to assist continuous integration of the rust-team branch. (use-modules (guix packages) (guix profiles) (guix build-system)) (manifest (map package->manifest-entry (fold-packages (lambda (package lst) (if (eq? (build-system-name (package-build-system package)) (quote cargo)) (cons package lst) lst)) (list)))) 128b784ec438997139ae4'>treecommitdiff
AgeCommit message (Expand)Author
2024-06-16gnu: Add python-papermill....* gnu/packages/jupyter.scm (python-papermill): New variable. Change-Id: I79bb9e9f2d95561f5e73f36213aa9f5b87f5d49a Ricardo Wurmus
2024-05-30gnu: Add python-comm....* gnu/packages/jupyter.scm (python-comm): New variable. Change-Id: I1bed7b6f54e63db6f47cdbaccd816c56f06045f8 Signed-off-by: Andrew Tropin <andrew@trop.in> Sharlatan Hellseher
2024-04-22gnu: python-nbclient: Update to 0.6.6....* gnu/packages/jupyter.scm (python-nbclient): Update to 0.6.6. [build-system]: Use pyproject-build-system. [propagated-inputs]: Remove python-nest-asyncio; add python-jupyter-core. Change-Id: Idb70e781c508be389f08c0cab439644852b81577 Ricardo Wurmus
2024-02-06gnu: python-ipydatawidgets: Fix build....As seen in <http://ci.guix.gnu.org/build/3396112/log/raw>. * gnu/packages/jupyter.scm (python-ipydatawidgets) [arguments] <#:phases>: Disable 3 failing tests in 'check phase. Change-Id: I8de3678914e871df5bbb50c69c322dc4b55d18ac Sharlatan Hellseher