[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
64/131: gnu: python-pynacl: Do not set PYTHONPATH.
From: |
guix-commits |
Subject: |
64/131: gnu: python-pynacl: Do not set PYTHONPATH. |
Date: |
Fri, 29 Jan 2021 09:22:00 -0500 (EST) |
apteryx pushed a commit to branch cu/farewell-to-pythonpath
in repository guix.
commit 0c53541b7f803a47fc40a8b240abcc2c89e7f723
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Sat Jan 23 23:49:59 2021 -0500
gnu: python-pynacl: Do not set PYTHONPATH.
* gnu/packages/python-crypto.scm (python-pynacl): Delete trailing #t.
[arguments]: Remove the '#:modules' argument.
[phases]: Use %standard-phases. Do not set PYTHONPATH.
---
gnu/packages/python-crypto.scm | 22 ++++++----------------
1 file changed, 6 insertions(+), 16 deletions(-)
diff --git a/gnu/packages/python-crypto.scm b/gnu/packages/python-crypto.scm
index 1f491cc..39b194b 100644
--- a/gnu/packages/python-crypto.scm
+++ b/gnu/packages/python-crypto.scm
@@ -24,6 +24,7 @@
;;; Copyright © 2020 Alexandros Theodotou <alex@zrythm.org>
;;; Copyright © 2020 Justus Winter <justus@sequoia-pgp.org>
;;; Copyright © 2020 Vinicius Monego <monego@posteo.net>
+;;; Copyright © 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -789,31 +790,20 @@ PKCS#8, PKCS#12, PKCS#5, X.509 and TSP.")
(substitute* "setup.py"
(("\"wheel\"") ""))
;; Remove bundled libsodium.
- (delete-file-recursively "src/libsodium")
- #t))
+ (delete-file-recursively "src/libsodium")))
(sha256
(base32
"01b56hxrbif3hx8l6rwz5kljrgvlbj7shmmd2rjh0hn7974a5sal"))))
(build-system python-build-system)
(arguments
- `(#:modules (,@%python-build-system-modules
- (guix build utils)
- (ice-9 ftw)
- (srfi srfi-26))
- #:phases
- (modify-phases (@ (guix build python-build-system) %standard-phases)
+ `(#:phases
+ (modify-phases %standard-phases
(add-before 'build 'use-system-sodium
(lambda _
- (setenv "SODIUM_INSTALL" "system")
- #t))
+ (setenv "SODIUM_INSTALL" "system")))
(replace 'check
(lambda _
- (let ((build-directory
- (car (scandir "build" (cut string-prefix? "lib" <>)))))
- (setenv "PYTHONPATH"
- (string-append "./build/" build-directory ":"
- (getenv "PYTHONPATH")))
- (invoke "pytest" "-vv")))))))
+ (invoke "pytest" "-vv"))))))
(native-inputs
`(("python-hypothesis" ,python-hypothesis)
("python-pytest" ,python-pytest)))
- 69/131: gnu: python-colorlog: Do not set PYTHONPATH., (continued)
- 69/131: gnu: python-colorlog: Do not set PYTHONPATH., guix-commits, 2021/01/29
- 72/131: gnu: python-aenum: Do not set PYTHONPATH., guix-commits, 2021/01/29
- 41/131: gnu: python-pytest-django: Do not alter PYTHONPATH., guix-commits, 2021/01/29
- 47/131: gnu: python-django-url-filter: Do not alter PYTHONPATH., guix-commits, 2021/01/29
- 48/131: gnu: graphite2: Do not alter PYTHONPATH., guix-commits, 2021/01/29
- 54/131: gnu: gdk-pixbuf: Update to 2.42.2., guix-commits, 2021/01/29
- 55/131: gnu: python-fenics-dijitso: Do not alter PYTHONPATH., guix-commits, 2021/01/29
- 67/131: gnu: python-stone: Do not set PYTHONPATH., guix-commits, 2021/01/29
- 68/131: gnu: python-typed-ast: Do not set PYTHONPATH., guix-commits, 2021/01/29
- 71/131: gnu: python-hdf4: Do not set PYTHONPATH., guix-commits, 2021/01/29
- 64/131: gnu: python-pynacl: Do not set PYTHONPATH.,
guix-commits <=
- 66/131: gnu: python-pathos: Do not set PYTHONPATH., guix-commits, 2021/01/29
- 63/131: gnu: python-pytest-isort: Do not set PYTHONPATH., guix-commits, 2021/01/29
- 62/131: gnu: pagekit: Do not set PYTHONPATH., guix-commits, 2021/01/29
- 75/131: gnu: python-text-unidecode: Do not set PYTHONPATH., guix-commits, 2021/01/29
- 76/131: gnu: python-markupsafe: Do not set PYTHONPATH., guix-commits, 2021/01/29
- 77/131: gnu: python-jinja2: Do not set PYTHONPATH., guix-commits, 2021/01/29
- 79/131: gnu: python-matplotlib-documentation: Do not read PYTHONPATH., guix-commits, 2021/01/29
- 40/131: gnu: python-django: Do not alter PYTHONPATH., guix-commits, 2021/01/29
- 44/131: gnu: python-django-sortedm2m: Do not alter PYTHONPATH., guix-commits, 2021/01/29
- 70/131: gnu: python-pymediainfo: Do not set PYTHONPATH., guix-commits, 2021/01/29