all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Pradana Adrinusa AUMARS via Guix-patches via <guix-patches@gnu.org>
To: 54186@debbugs.gnu.org
Subject: [bug#54186] [PATCH] gnu: Add python-mathlibtools.
Date: Sun, 27 Feb 2022 16:44:13 +0100	[thread overview]
Message-ID: <9f0d87a873eb4abdf541a7800c08418ec770416d.camel@courrier.dev> (raw)

From da48bcdbc08c795fff77c1aed9b6d64192a699e3 Mon Sep 17 00:00:00 2001
From: Pradana AUMARS <paumars@courrier.dev>
Date: Sun, 27 Feb 2022 16:41:58 +0100
Subject: [PATCH] gnu: Add python-mathlibtools.

* gnu/packages/lean.scm (python-mathlibtools): New variable.
---
 gnu/packages/lean.scm | 46 ++++++++++++++++++++++++++++++++++++++++++-
 1 file changed, 45 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/lean.scm b/gnu/packages/lean.scm
index 6ac7f1668a..b959039e22 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.
 ;;;
@@ -21,9 +22,17 @@
 (define-module (gnu packages lean)
   #: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,38 @@ (define-public lean
 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 leanproject, a supporting tool for Lean
mathlib.")
+   (license license:asl2.0)))
-- 
2.34.0






             reply	other threads:[~2022-02-27 15:45 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-02-27 15:44 Pradana Adrinusa AUMARS via Guix-patches via [this message]
2022-03-16 14:26 ` bug#54186: [PATCH] gnu: Add python-mathlibtools Ludovic Courtès

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=9f0d87a873eb4abdf541a7800c08418ec770416d.camel@courrier.dev \
    --to=guix-patches@gnu.org \
    --cc=54186@debbugs.gnu.org \
    --cc=paumars@courrier.dev \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.