From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:44064) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hVmvn-0005QO-TD for guix-patches@gnu.org; Tue, 28 May 2019 20:59:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hVmvm-00035b-SP for guix-patches@gnu.org; Tue, 28 May 2019 20:59:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:44264) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hVmvm-00035S-Le for guix-patches@gnu.org; Tue, 28 May 2019 20:59:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hVmvm-0006nO-Ij for guix-patches@gnu.org; Tue, 28 May 2019 20:59:02 -0400 Subject: [bug#35954] [PATCH] gnu: python-markupsafe: Update to 1.1.1 Resent-Message-ID: Mime-Version: 1.0 Message-Id: In-Reply-To: <8ac807c6-02ab-4ec3-b26b-578a5ed70075@www.fastmail.com> References: <20190528124105.4933-1-h.nasajpour@pantherx.org> <20190528214545.68d6e85c@scratchpost.org> <8ac807c6-02ab-4ec3-b26b-578a5ed70075@www.fastmail.com> Date: Wed, 29 May 2019 05:28:25 +0430 From: "Hamzeh Nasajpour" 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: Danny Milosavljevic Cc: 35954@debbugs.gnu.org Oh, so sorry. This is my mistake, ignore it. On Wed, May 29, 2019, at 5:27 AM, Hamzeh Nasajpour wrote: > +(define-public python-flask-cors > + (package > + (name "python-flask-cors") > + (version "3.0.7") > + (source (origin > + (method url-fetch) > + (uri (pypi-uri "Flask-Cors" version)) > + (sha256 (base32 > "1v6gq4vjgyxi8q8lxawpdfhq01adb4bznnabp08ks5nzbwibz43y")))) > + (build-system python-build-system) > + (arguments > + `(#:tests? #f)) > + (propagated-inputs > + `(("python-six" ,python-six) > + ("python-flask" ,python-flask))) > + (home-page "https://github.com/corydolphin/flask-cors") > + (synopsis "A Flask extension adding a decorator for CORS support") > + (description > + "This package has a simple philosophy, when you want to enable > CORS, you wish to enable it for all use cases on a domain. This means > no mucking around with different allowed headers, methods, etc. By > default, submission of cookies across domains is disabled due to the > security implications") > + (license license:expat))) > > > On Wed, May 29, 2019, at 12:15 AM, Danny Milosavljevic wrote: > > None of the tests get found. > > > > Otherwise OK (except for missing dot in commit message). > >