From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:56479) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gdxwI-0003SS-3I for guix-patches@gnu.org; Mon, 31 Dec 2018 08:49:08 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gdxwE-0001YR-RL for guix-patches@gnu.org; Mon, 31 Dec 2018 08:49:06 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:53861) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gdxwE-0001Xx-JL for guix-patches@gnu.org; Mon, 31 Dec 2018 08:49:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gdxwE-0004h0-FW for guix-patches@gnu.org; Mon, 31 Dec 2018 08:49:02 -0500 Subject: [bug#33936] [PATCH 2/3] gnu: Add python-doctest-ignore-unicode. Resent-Message-ID: From: Ricardo Wurmus Date: Mon, 31 Dec 2018 14:48:16 +0100 Message-ID: <20181231134817.713-2-ricardo.wurmus@mdc-berlin.de> In-Reply-To: <20181231134817.713-1-ricardo.wurmus@mdc-berlin.de> References: <20181231134817.713-1-ricardo.wurmus@mdc-berlin.de> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 33936@debbugs.gnu.org Cc: Ricardo Wurmus * gnu/packages/python.scm (python-doctest-ignore-unicode): New variable. --- gnu/packages/python.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index bb4c5ab76..81fbe2b68 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -14980,6 +14980,27 @@ RFC 8265 and RFC 8266.") (properties '((upstream-name . "Wikidata"))) (license license:gpl3+))) +(define-public python-doctest-ignore-unicode + (package + (name "python-doctest-ignore-unicode") + (version "0.1.2") + (source + (origin + (method url-fetch) + (uri (pypi-uri "doctest-ignore-unicode" version)) + (sha256 + (base32 + "1m9aa4qnyj21lbq4sbvmv1vcz7zksss4rz37ddf2hxv4hk8b547w")))) + (build-system python-build-system) + (native-inputs + `(("python-nose" ,python-nose))) + (home-page "https://github.com/gnublade/doctest-ignore-unicode") + (synopsis "Ignore Unicode literal prefixes in doctests") + (description + "This package adds support for a flag to ignore Unicode literal prefixes +in doctests.") + (license license:asl2.0))) + (define-public python-attr (package (name "python-attr") -- 2.19.1