[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#53046] [PATCH] gnu: python-args: Patch reference to basestring.
From: |
Tanguy Le Carrour |
Subject: |
[bug#53046] [PATCH] gnu: python-args: Patch reference to basestring. |
Date: |
Thu, 6 Jan 2022 11:21:02 +0100 |
This fixes a build failure in the 'sanity-check' phase.
* gnu/packages/python-xyz.scm (python-args)[arguments]:
Replace reference to basestring with str.
---
gnu/packages/python-xyz.scm | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index c9a0b7d6bf..0d9bfb1711 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -13013,6 +13013,14 @@ (define-public python-args
(base32
"057qzi46h5dmxdqknsbrssn78lmqjlnm624iqdhrnpk26zcbi1d7"))))
(build-system python-build-system)
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (add-after 'unpack 'patch-args.py
+ (lambda _
+ (substitute* "args.py"
+ (("basestring") "str"))
+ #t)))))
(home-page "https://github.com/kennethreitz/args")
(synopsis "Command-line argument parser")
(description
--
2.34.0
- [bug#53046] [PATCH] gnu: python-args: Patch reference to basestring.,
Tanguy Le Carrour <=