[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
08/10: gnu: Add python-mathlibtools.
From: |
guix-commits |
Subject: |
08/10: gnu: Add python-mathlibtools. |
Date: |
Wed, 16 Mar 2022 10:50:24 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit fee68a93d833b7774de6b0af9ddb9f5f696922eb
Author: Pradana AUMARS <paumars@courrier.dev>
AuthorDate: Sun Feb 27 16:41:58 2022 +0100
gnu: Add python-mathlibtools.
* gnu/packages/lean.scm (python-mathlibtools): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
gnu/packages/lean.scm | 45 ++++++++++++++++++++++++++++++++++++++++++++-
1 file changed, 44 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/lean.scm b/gnu/packages/lean.scm
index 646bd9597a..12c1849cdb 100644
--- a/gnu/packages/lean.scm
+++ b/gnu/packages/lean.scm
@@ -2,6 +2,7 @@
;;; Copyright © 2019 Amin Bandali <bandali@gnu.org>
;;; Copyright © 2020 Brett Gilio <brettg@gnu.org>
;;; Copyright © 2020 Tobias Geerinckx-Rice <me@tobias.gr>
+;;; Copyright © 2022 Pradana Aumars <paumars@courrier.dev>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -22,9 +23,17 @@
#:use-module (gnu packages bash)
#:use-module (gnu packages multiprecision)
#:use-module (guix build-system cmake)
+ #:use-module (guix build-system python)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix packages)
- #:use-module (guix git-download))
+ #:use-module (guix git-download)
+ #:use-module (guix download)
+ #:use-module (gnu packages graphviz)
+ #:use-module (gnu packages version-control)
+ #:use-module (gnu packages python-build)
+ #:use-module (gnu packages python-crypto)
+ #:use-module (gnu packages python-web)
+ #:use-module (gnu packages python-xyz))
(define-public lean
(package
@@ -72,3 +81,37 @@
core based on dependent typed theory, aiming to bridge the gap between
interactive and automated theorem proving.")
(license license:asl2.0)))
+
+(define-public python-mathlibtools
+ (package
+ (name "python-mathlibtools")
+ (version "1.1.1")
+ (source (origin
+ (method url-fetch)
+ (uri (pypi-uri "mathlibtools" version))
+ (sha256
+ (base32
+ "089pql105imx8z7ar1wiz9fn000jp6xqdfixw4jf2vric94vn9fj"))))
+ (build-system python-build-system)
+ (arguments
+ '(#:phases (modify-phases %standard-phases
+ (add-before 'check 'fix-home-directory
+ (lambda _
+ (setenv "HOME" "/tmp"))))))
+ (inputs (list python-toml
+ python-pygithub
+ python-certifi
+ python-gitpython
+ python-requests
+ python-click
+ python-tqdm
+ python-networkx
+ python-pydot
+ python-pyyaml
+ python-atomicwrites))
+ (home-page "https://github.com/leanprover-community/mathlib-tools")
+ (synopsis "Development tools for Lean mathlib")
+ (description
+ "This package contains @command{leanproject}, a supporting tool for Lean
+mathlib, a mathematical library for the Lean theorem prover.")
+ (license license:asl2.0)))
- branch master updated (53d986215f -> 797e308047), guix-commits, 2022/03/16
- 01/10: gnu : nicotine+: Update to 3.2.1., guix-commits, 2022/03/16
- 04/10: gnu: cryfs: Update to 0.11.2., guix-commits, 2022/03/16
- 03/10: packages: 'modify-inputs' preserves outputs in 'replace' clauses., guix-commits, 2022/03/16
- 09/10: gnu: matterbridge: update to 1.24.0, guix-commits, 2022/03/16
- 05/10: system: Improve 'read-boot-parameters' incompatibility diagnostic., guix-commits, 2022/03/16
- 08/10: gnu: Add python-mathlibtools.,
guix-commits <=
- 06/10: gnu: python-gitlab: update to 3.2.0, guix-commits, 2022/03/16
- 07/10: gnu: dunst: Update to 1.8.1., guix-commits, 2022/03/16
- 02/10: tests: Exercise 'modify-inputs' with a 'replace' clause., guix-commits, 2022/03/16
- 10/10: gnu: Add tessen., guix-commits, 2022/03/16